From 04754a1f771fc4525f723218f81a73aa5afe226b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=BC=96=E7=A0=81=E7=8C=BF?= Date: Mon, 29 Sep 2025 05:07:42 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=9E=E7=8E=B0=20nacos=20=E7=9A=84=E5=88=86?= =?UTF-8?q?=E5=B8=83=E5=BC=8F=E9=9B=86=E7=BE=A4=E9=83=A8=E7=BD=B2=E9=85=8D?= =?UTF-8?q?=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- README.md | 1 + doc/DockerSwarm.md | 318 + doc/完善微前端架构的建议.md | 2 - doc/样式隔离与共享的方案.md | 237 - docker/nacos-cluster/README.md | 147 + docker/nacos-cluster/docker-compose.yml | 142 + docker/nacos-cluster/mysql-schema.sql | 188 + docker/nacos-cluster/nacos_config_export.zip | Bin 0 -> 622 bytes .../prometheus/prometheus-cluster.yaml} | 2 +- docker/nacos/docker-compose.yml | 33 - .../standalone-logs/access_log.2025-09-22.log | 4915 ---- .../standalone-logs/access_log.2025-09-23.log | 4661 ---- docker/nacos/standalone-logs/alipay-jraft.log | 40 - .../alipay-jraft.log.2025-09-22.0 | 462 - docker/nacos/standalone-logs/cmdb-main.log | 0 .../standalone-logs/config-client-request.log | 137 - docker/nacos/standalone-logs/config-dump.log | 64 - docker/nacos/standalone-logs/config-fatal.log | 0 .../nacos/standalone-logs/config-memory.log | 5320 ---- .../config-memory.log.2025-09-22.0 | 3380 --- .../nacos/standalone-logs/config-notify.log | 0 .../standalone-logs/config-pull-check.log | 0 docker/nacos/standalone-logs/config-pull.log | 0 .../nacos/standalone-logs/config-server.log | 100 - docker/nacos/standalone-logs/config-trace.log | 145 - docker/nacos/standalone-logs/core-auth.log | 188 - .../core-auth.log.2025-09-22.0 | 56 - docker/nacos/standalone-logs/istio-main.log | 0 .../nacos/standalone-logs/k8s-sync-main.log | 0 .../nacos/standalone-logs/nacos-address.log | 0 .../nacos/standalone-logs/nacos-cluster.log | 16 - .../standalone-logs/nacos-persistence.log | 48 - docker/nacos/standalone-logs/nacos.log | 162 - .../standalone-logs/nacos.log.2025-09-22.0 | 1001 - docker/nacos/standalone-logs/nacos_gc.log | 23 - docker/nacos/standalone-logs/nacos_gc.log.0 | 198 - .../nacos/standalone-logs/naming-distro.log | 0 docker/nacos/standalone-logs/naming-event.log | 14 - .../naming-event.log.2025-09-22.0 | 2 - .../standalone-logs/naming-performance.log | 2574 -- .../naming-performance.log.2025-09-22.0 | 1665 -- docker/nacos/standalone-logs/naming-push.log | 38 - .../naming-push.log.2025-09-22.0 | 34 - docker/nacos/standalone-logs/naming-raft.log | 0 docker/nacos/standalone-logs/naming-rt.log | 0 .../nacos/standalone-logs/naming-server.log | 232 - .../naming-server.log.2025-09-22.0 | 122 - .../plugin-control-connection.log | 22152 ---------------- ...plugin-control-connection.log.2025-09-22.0 | 14110 ---------- .../standalone-logs/plugin-control-tps.log | 0 .../nacos/standalone-logs/plugin-control.log | 416 - .../nacos/standalone-logs/protocol-distro.log | 96 - .../nacos/standalone-logs/protocol-raft.log | 58 - .../nacos/standalone-logs/remote-digest.log | 0 docker/nacos/standalone-logs/remote-push.log | 0 docker/nacos/standalone-logs/remote.log | 76 - docker/traefik/README.md | 3 +- docker/traefik/docker-compose.yml | 33 +- docker/traefik/package.json | 2 +- docker/traefik/src/config/index.js | 2 + .../product/views/ProductList/ProductList.tsx | 1 + front-end/app-product/src/main.ts | 1 + front-end/app-product/vite.config.ts | 6 +- front-end/app-shared/index.html | 2 +- front-end/app-shared/package.json | 1 + front-end/app-shared/src/App.tsx | 24 + front-end/app-shared/src/config/HttpConfig.ts | 6 +- front-end/app-shared/src/infra/AxiosInfra.ts | 3 +- front-end/app-shared/src/main.ts | 8 + front-end/app-shared/src/types/global.d.ts | 13 + front-end/app-shared/tsconfig.json | 2 + front-end/app-shared/vite.config.ts | 10 +- front-end/main-app/.env.development | 2 +- front-end/main-app/src/app/main.ts | 4 +- .../main-app/src/app/views/Home/Home.tsx | 4 +- .../main-app/src/shared/types/global.d.ts | 11 + front-end/main-app/vite.config.ts | 10 +- front-end/nacos-federation/README.md | 23 + .../src/nacosServiceManage.ts | 78 +- .../nacos-federation/src/vite-plugin-nacos.ts | 14 +- front-end/nacos-federation/tsconfig.json | 3 +- 82 files changed, 991 insertions(+), 62852 deletions(-) create mode 100644 doc/DockerSwarm.md delete mode 100644 doc/样式隔离与共享的方案.md create mode 100644 docker/nacos-cluster/README.md create mode 100644 docker/nacos-cluster/docker-compose.yml create mode 100644 docker/nacos-cluster/mysql-schema.sql create mode 100644 docker/nacos-cluster/nacos_config_export.zip rename docker/{nacos/prometheus/prometheus-standalone.yaml => nacos-cluster/prometheus/prometheus-cluster.yaml} (94%) delete mode 100644 docker/nacos/docker-compose.yml delete mode 100644 docker/nacos/standalone-logs/access_log.2025-09-22.log delete mode 100644 docker/nacos/standalone-logs/access_log.2025-09-23.log delete mode 100644 docker/nacos/standalone-logs/alipay-jraft.log delete mode 100644 docker/nacos/standalone-logs/alipay-jraft.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/cmdb-main.log delete mode 100644 docker/nacos/standalone-logs/config-client-request.log delete mode 100644 docker/nacos/standalone-logs/config-dump.log delete mode 100644 docker/nacos/standalone-logs/config-fatal.log delete mode 100644 docker/nacos/standalone-logs/config-memory.log delete mode 100644 docker/nacos/standalone-logs/config-memory.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/config-notify.log delete mode 100644 docker/nacos/standalone-logs/config-pull-check.log delete mode 100644 docker/nacos/standalone-logs/config-pull.log delete mode 100644 docker/nacos/standalone-logs/config-server.log delete mode 100644 docker/nacos/standalone-logs/config-trace.log delete mode 100644 docker/nacos/standalone-logs/core-auth.log delete mode 100644 docker/nacos/standalone-logs/core-auth.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/istio-main.log delete mode 100644 docker/nacos/standalone-logs/k8s-sync-main.log delete mode 100644 docker/nacos/standalone-logs/nacos-address.log delete mode 100644 docker/nacos/standalone-logs/nacos-cluster.log delete mode 100644 docker/nacos/standalone-logs/nacos-persistence.log delete mode 100644 docker/nacos/standalone-logs/nacos.log delete mode 100644 docker/nacos/standalone-logs/nacos.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/nacos_gc.log delete mode 100644 docker/nacos/standalone-logs/nacos_gc.log.0 delete mode 100644 docker/nacos/standalone-logs/naming-distro.log delete mode 100644 docker/nacos/standalone-logs/naming-event.log delete mode 100644 docker/nacos/standalone-logs/naming-event.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/naming-performance.log delete mode 100644 docker/nacos/standalone-logs/naming-performance.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/naming-push.log delete mode 100644 docker/nacos/standalone-logs/naming-push.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/naming-raft.log delete mode 100644 docker/nacos/standalone-logs/naming-rt.log delete mode 100644 docker/nacos/standalone-logs/naming-server.log delete mode 100644 docker/nacos/standalone-logs/naming-server.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/plugin-control-connection.log delete mode 100644 docker/nacos/standalone-logs/plugin-control-connection.log.2025-09-22.0 delete mode 100644 docker/nacos/standalone-logs/plugin-control-tps.log delete mode 100644 docker/nacos/standalone-logs/plugin-control.log delete mode 100644 docker/nacos/standalone-logs/protocol-distro.log delete mode 100644 docker/nacos/standalone-logs/protocol-raft.log delete mode 100644 docker/nacos/standalone-logs/remote-digest.log delete mode 100644 docker/nacos/standalone-logs/remote-push.log delete mode 100644 docker/nacos/standalone-logs/remote.log create mode 100644 front-end/app-shared/src/App.tsx create mode 100644 front-end/app-shared/src/main.ts create mode 100644 front-end/app-shared/src/types/global.d.ts create mode 100644 front-end/main-app/src/shared/types/global.d.ts diff --git a/.gitignore b/.gitignore index 7a63123..0c8b328 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,7 @@ .DS_Store node_modules dist -docker/nacos/standalone-logs/* +docker/nacos-cluster/standalone-logs/* pnpm-lock.yaml package-lock.json diff --git a/README.md b/README.md index dd8e171..6ec75df 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,7 @@ - [x] 基于DDD理念改造 - [x] 拆分领域模块为联邦模块,实现微前端 - [x] 基于 Vue3+OOP+JSX 改造项目代码 +- [ ] 开发Nacos的config-service实现代理访问Nacos服务 - [x] 基于 Nacos 开发 nacos-federation 插件,实现各模块的服务注册&发现,统一管理远程地址 - [x] 修改 nacos-federation 插件实现其成为vite的插件,进一步简化代码! - [x] 修改 nacos-federation 插件,实现 接口请求基地址从 配置中心获取,并注入到环境变量中 diff --git a/doc/DockerSwarm.md b/doc/DockerSwarm.md new file mode 100644 index 0000000..7b5a24d --- /dev/null +++ b/doc/DockerSwarm.md @@ -0,0 +1,318 @@ +以下是完整的 Docker Swarm 命令大全: + +## 1. Swarm 集群管理命令 + +### 初始化和管理 Swarm + +```bash +# 初始化 Swarm 集群 +docker swarm init --advertise-addr + +# 初始化并指定默认地址池 +docker swarm init --advertise-addr --default-addr-pool <网段> --default-addr-pool-mask-length <掩码> + +# 查看 Swarm 集群信息 +docker swarm inspect + +# 查看 Swarm 加入令牌 +docker swarm join-token worker # 工作节点令牌 +docker swarm join-token manager # 管理节点令牌 + +# 更新令牌 +docker swarm join-token --rotate worker +docker swarm join-token --rotate manager + +# 离开 Swarm 集群 +docker swarm leave # 工作节点离开 +docker swarm leave --force # 管理节点强制离开 + +# 解锁 Swarm 集群 +docker swarm unlock +docker swarm unlock-key # 查看解锁密钥 +docker swarm unlock-key --rotate # 更新解锁密钥 +``` + +## 2. 节点管理命令 + +### 节点操作 + +```bash +# 查看所有节点 +docker node ls + +# 查看节点详细信息 +docker node inspect <节点名称或ID> + +# 查看节点上的任务 +docker node ps <节点名称或ID> + +# 提升节点为管理节点 +docker node promote <节点名称或ID> + +# 降级节点为工作节点 +docker node demote <节点名称或ID> + +# 移除节点 +docker node rm <节点名称或ID> + +# 更新节点 +docker node update --availability active <节点名称或ID> # 激活节点 +docker node update --availability drain <节点名称或ID> # 排空节点(停止任务) +docker node update --availability pause <节点名称或ID> # 暂停节点 + +# 添加标签到节点 +docker node update --label-add = <节点名称或ID> + +# 移除节点标签 +docker node update --label-rm <节点名称或ID> +``` + +## 3. 服务管理命令 + +### 服务创建和操作 + +```bash +# 创建服务 +docker service create --name <服务名> <镜像> + +# 创建服务(完整参数示例) +docker service create \ + --name nginx \ + --replicas 3 \ + --publish published=80,target=80 \ + --mount type=bind,source=/host/path,target=/container/path \ + --env ENV_VAR=value \ + --constraint 'node.role==worker' \ + --limit-cpu 0.5 \ + --limit-memory 512M \ + nginx:latest + +# 查看所有服务 +docker service ls + +# 查看服务详细信息 +docker service inspect <服务名> + +# 查看服务任务状态 +docker service ps <服务名> + +# 查看服务日志 +docker service logs <服务名> +docker service logs --follow <服务名> # 实时日志 +docker service logs --tail 100 <服务名> # 最后100行日志 + +# 扩展服务副本数 +docker service scale <服务名>=<数量> + +# 更新服务 +docker service update --image <新镜像> <服务名> +docker service update --replicas <数量> <服务名> +docker service update --force <服务名> # 强制更新(重新部署) + +# 删除服务 +docker service rm <服务名> + +# 回滚服务到上次更新 +docker service rollback <服务名> +``` + +### 服务更新参数 + +```bash +# 镜像相关 +--image <镜像:标签> # 更新镜像 +--rollback # 回滚到上一版本 + +# 副本和部署策略 +--replicas <数量> # 设置副本数量 +--update-parallelism <数量> # 同时更新的任务数 +--update-delay <时间> # 更新间隔(如10s) +--update-failure-action <动作> # 失败动作(pause/continue) +--update-monitor <时间> # 监控时间(如30s) +--update-order <顺序> # 更新顺序(start-first/stop-first) + +# 资源限制 +--limit-cpu <值> # CPU限制(如0.5) +--limit-memory <值> # 内存限制(如512M) +--reserve-cpu <值> # 保留CPU +--reserve-memory <值> # 保留内存 + +# 网络和端口 +--publish-add <端口映射> # 添加端口映射 +--publish-rm <端口映射> # 移除端口映射 +--network-add <网络> # 添加网络 +--network-rm <网络> # 移除网络 + +# 约束和标签 +--constraint-add <约束> # 添加约束 +--constraint-rm <约束> # 移除约束 +--label-add <标签> # 添加标签 +--label-rm <标签> # 移除标签 + +# 环境变量 +--env-add <变量> # 添加环境变量 +--env-rm <变量> # 移除环境变量 +--secret-add <密钥> # 添加密钥 +--secret-rm <密钥> # 移除密钥 +``` + +## 4. 栈(Stack)管理命令 + +### 使用 Docker Compose 文件部署 + +```bash +# 部署栈 +docker stack deploy -c docker-compose.yml <栈名> + +# 查看所有栈 +docker stack ls + +# 查看栈中的服务 +docker stack services <栈名> + +# 查看栈中服务的任务 +docker stack ps <栈名> + +# 删除栈 +docker stack rm <栈名> +``` + +## 5. 网络管理命令 + +### Swarm 网络操作 + +```bash +# 查看网络 +docker network ls + +# 创建覆盖网络 +docker network create --driver overlay --attachable <网络名> + +# 查看网络详细信息 +docker network inspect <网络名> + +# 删除网络 +docker network rm <网络名> +``` + +## 6. 配置和密钥管理 + +### 配置管理 + +```bash +# 创建配置 +docker config create <配置名> <文件路径> + +# 查看配置列表 +docker config ls + +# 查看配置内容 +docker config inspect <配置名> + +# 删除配置 +docker config rm <配置名> +``` + +### 密钥管理 + +```bash +# 创建密钥 +docker secret create <密钥名> <文件路径> +echo "secret content" | docker secret create <密钥名> - + +# 查看密钥列表 +docker secret ls + +# 查看密钥内容 +docker secret inspect <密钥名> + +# 删除密钥 +docker secret rm <密钥名> +``` + +## 7. 常用查询和监控命令 + +### 集群状态查询 + +```bash +# 查看集群系统信息 +docker system df # 磁盘使用情况 +docker system events # 系统事件 +docker system info # 系统信息 + +# 监控资源使用 +docker stats # 实时资源统计 +docker stats --no-stream # 一次性资源统计 + +# 查看版本信息 +docker version +``` + +## 8. 高级部署配置示例 + +### 使用 Docker Compose 文件 + +```yaml +# docker-compose.yml +version: '3.8' + +services: + web: + image: nginx:latest + deploy: + replicas: 3 + update_config: + parallelism: 2 + delay: 10s + failure_action: rollback + restart_policy: + condition: on-failure + delay: 5s + max_attempts: 3 + resources: + limits: + cpus: '0.5' + memory: 512M + reservations: + cpus: '0.1' + memory: 128M + placement: + constraints: + - node.role == worker + ports: + - "80:80" + networks: + - webnet + +networks: + webnet: + driver: overlay + attachable: true +``` + +### 部署栈 + +```bash +docker stack deploy -c docker-compose.yml myapp +``` + +## 9. 故障排查命令 + +### 排查和调试 + +```bash +# 查看节点连接状态 +docker node ls + +# 查看服务详细状态 +docker service inspect --pretty <服务名> + +# 查看任务日志 +docker service logs --tail 50 <服务名> + +# 在节点上执行命令 +docker exec -it <容器ID> /bin/bash + +# 查看 Swarm 集群事件 +docker events +``` diff --git a/doc/完善微前端架构的建议.md b/doc/完善微前端架构的建议.md index 96a2094..17e949a 100644 --- a/doc/完善微前端架构的建议.md +++ b/doc/完善微前端架构的建议.md @@ -19,5 +19,3 @@ plugin - federation 插件本身支持代码分割,可将每个微前端模块的代码拆分成多个小块,只在需要时加载相应的代码块。此外,还可以使用缓存策略,减少重复加载。 * **安全机制**:随着微前端模块的增加,安全问题也需要重视。需要确保各个模块之间的数据传输是安全的,防止跨站脚本攻击(XSS)、跨站请求伪造(CSRF)等安全漏洞。可以采用身份验证、授权、输入验证等安全措施来保障系统的安全。 - -> (注:文档部分内容可能由 AI 生成) \ No newline at end of file diff --git a/doc/样式隔离与共享的方案.md b/doc/样式隔离与共享的方案.md deleted file mode 100644 index eea040d..0000000 --- a/doc/样式隔离与共享的方案.md +++ /dev/null @@ -1,237 +0,0 @@ -# 微前端架构中样式隔离与共享的方案及最佳实践 - -在微前端架构中,样式隔离与共享需要兼顾 "模块间样式不冲突" 和 "公共样式高效复用",可以结合以下方案实现: - -### **一、样式隔离方案** - -确保各微应用的样式不会相互污染,推荐 3 种实用方案: - -#### 1. **CSS Modules(最常用)** - -* 原理:通过 Webpack/Vite 的 CSS Modules 插件,将类名编译为唯一哈希值(如`header`→`_header_1234_`) - -* 实现: - -``` -// 组件中使用 - -import styles from './Product.module.css' - -const Product = () => ( - - \
- - \

商品列表\

- - \
- -) -``` - -* 在 Vue3+TSX 中,为样式文件添加`.module.css`/`.module.scss`后缀 - -* 在组件中通过`import styles from './xxx.module.css'`引入,使用`styles.className`绑定 - -#### 2. **Shadow DOM(最强隔离)** - -* 原理:利用浏览器原生的 Shadow DOM 特性,将微应用的 DOM 树隔离在独立作用域 - -* 实现:在主应用加载微应用时,将其挂载到 Shadow 容器中 - -``` -// 主应用加载微应用时 - -const mountMicroApp = (appName: string) => { - - // 创建带Shadow DOM的容器 - - const container = document.createElement('div') - - const shadowRoot = container.attachShadow({ mode: 'closed' }) - - - - // 将微应用挂载到shadowRoot - - document.body.appendChild(container) - - loadMicroApp(appName, shadowRoot) - -} -``` - -* 注意:Shadow DOM 会隔离大部分样式,但可能影响字体图标、全局样式(如`body`) - -#### 3. **命名空间隔离(简单直接)** - -* 原理:为每个微应用约定独特的前缀(如`app-product-`),所有样式类名均带前缀 - -* 实现: - -``` -// app-product模块的样式 - -.app-product { - - &-container { padding: 20px; } - - &-title { font-size: 18px; } - -} -``` - -``` -// 对应组件 - -const Product = () => ( - - \
- - \

商品列表\

- - \
- -) -``` - -### **二、样式共享方案** - -将公共样式(如主题色、组件库样式)高效共享给各微应用: - -#### 1. **通过共享模块(app-shared)导出样式** - -* 在`app-shared`中集中管理公共样式: - -``` -// app-shared/src/styles/variables.scss - -\$primary-color: #42b983; - -\$font-size-base: 14px; - -// app-shared/src/styles/global.scss - -@import './variables.scss'; - -.btn { - - padding: 8px 16px; - - background: \$primary-color; - -} -``` - -* 通过模块联邦导出样式文件: - -``` -// app-shared/vite.config.ts - -export default defineConfig({ - - plugins: \[ - - federation({ - - name: 'appShared', - - exposes: { - - './styles': './src/styles/global.scss', - - './variables': './src/styles/variables.scss' - - } - - }) - - ] - -}) -``` - -* 其他应用引入使用: - -``` -// 在main-app或app-product中 - -import 'appShared/styles'; // 引入全局样式 - -// 或在SCSS中使用变量 - -@import 'appShared/variables'; - -.local-class { color: \$primary-color; } -``` - -#### 2. **使用 CSS 变量定义主题** - -* 在主应用的根样式中定义全局 CSS 变量: - -``` -/\* main-app/src/styles/theme.css \*/ - -:root { - - \--primary-color: #42b983; - - \--border-radius: 4px; - -} -``` - -* 所有微应用直接使用这些变量(无需导入,天然共享): - -``` -// 任意微应用的样式 - -.card { - - border: 1px solid var(--primary-color); - - border-radius: var(--border-radius); - -} -``` - -* 优势:可动态修改(如切换深色模式),通过 JS 操作`document.documentElement.style.setProperty('--primary-color', 'xxx')` - -#### 3. **共享 UI 组件库样式** - -如果各应用使用同一 UI 库(如 Element Plus),可在`app-shared`中统一引入,避免重复打包: - -``` -// app-shared/src/index.ts - -import 'element-plus/dist/index.css'; - -// 导出UI组件 - -export { ElButton, ElInput } from 'element-plus'; -``` - -其他应用直接从`app-shared`导入组件,无需重复引入样式。 - -### **三、最佳实践建议** - -1. **优先级选择**: - -* 隔离:优先用 CSS Modules(平衡易用性和隔离性),特殊场景用 Shadow DOM - -* 共享:基础变量用 CSS 变量,复杂样式通过`app-shared`导出 - -1. **避免全局污染**: - -* 禁止在微应用中使用无限制的全局选择器(如`div { ... }`) - -* 必要的全局样式(如重置样式)放在主应用,或通过`app-shared`统一导出 - -1. **构建配置**: - -* 确保 Vite 配置中`css.modules`开启(默认开启),避免类名冲突 - -* 对共享的 SCSS 变量,可配置`css.preprocessorOptions`简化导入路径 - -通过以上方案,既能保证各微应用样式独立,又能高效复用公共样式,维持架构的灵活性和一致性。 - -> (注:文档部分内容可能由 AI 生成) \ No newline at end of file diff --git a/docker/nacos-cluster/README.md b/docker/nacos-cluster/README.md new file mode 100644 index 0000000..c6e71dd --- /dev/null +++ b/docker/nacos-cluster/README.md @@ -0,0 +1,147 @@ +## nacos-cluster hostname 集群版 + +把 Nacos 部署到多台Linux 服务器上的版本配置,下面是**文件说明**: + +- docker-compose.yml: Docker compose + Docker Swarm 的编排文件 +- nacos_config_export.zip: 存储在Nacos配置中心的项目配置,部署成功后台导入即可 +- mysql-schema.sql: Nacos 集群公用的数据库,会自动导入到Mysql,不用动 +- prometheus: Prometheus 的配置文件 + +## 条件 + +- 至少三台起步的Linux主机(安装有docker),你可以使用虚拟机。 +- 一个能正常访问Docker的网络环境(拉取镜像) +- 耐心,毅力,别慌! + +## 集群配置 + +假设我们有三台Linux主机,他们的IP地址为: + +- 1: 192.168.139.84 +- 2: 192.168.139.15 +- 3: 192.168.139.178 + +选一台你喜欢的(我选1),作为集群的 **Manager**,然后SSH登录进去,获取管理员权限,然后: + +```bash +# 初始化 Swarm 集群 +docker swarm init --advertise-addr 192.168.139.84 +``` + +命令执行完成后,你会得到这样的返回: + +```bash +Swarm initialized: current node (z5sucmc80ns8bxrdqhs71dg8x) is now a manager. + +To add a worker to this swarm, run the following command: + + # 复制这个 + docker swarm join --token SWMTKN-1-3n9xxxxnwvsj6-4rhxx8xxxxzbbul 192.168.139.84:2377 + +To add a manager to this swarm, run 'docker swarm join-token manager' and follow the instructions. +``` + +然后SSH登录**worker**机,也就是 上面的 2,3 服务器,获取SSH权限后,分别执行上面给的命令: + +```bash +docker swarm join --token SWMTKN-1-3n9xxxxnwvsj6-4rhxx8xxxxzbbul 192.168.139.84:2377 +``` + +**这样 2,3 服务器就和1服务器组成了集群** + +可以指执行命令查看是否组成集群: + +```bash +# 查看所有节点 +docker node ls +``` + +注意,如果你的服务器有防火墙,那么请记住放行端口,下面是Ubuntu上的例子: + +```bash +# --- Docker Swarm 集群通信端口 --- + +# TCP 2377: Swarm 管理端口 (仅在 Manager 和 Worker 之间通信) +sudo ufw allow 2377/tcp +# TCP/UDP 7946: 节点之间的控制平面和数据平面的 gossip 协议通信 +sudo ufw allow 7946/tcp +sudo ufw allow 7946/udp +# UDP 4789: VXLAN 端口,用于 overlay 网络中容器之间的通信 +sudo ufw allow 4789/udp + + + +# --- MySQL 数据库端口 (可选) --- + +# TCP 3306: MySQL 数据库端口(需要外部访问数据库时候才开) +sudo ufw allow 3306/tcp + + +# --- Nacos 集群端口 --- + +# Nacos 管理后台端口 +sudo ufw allow 8080/tcp +# 客户端gRPC请求服务端端口,用于客户端向服务端发起连接和请求 +sudo ufw allow 9848/tcp +# Nacos HTTP API 端口,用于Nacos AdminAPI及HTTP OpenAPI的访问 +sudo ufw allow 8848/tcp + + +# 重新加载防火墙以应用所有规则 +sudo ufw reload + +# 查看配置和状态 +ufw status +``` + +## 部署运行 + +### 运行启动 + +将本文件夹内所有文件上传到 1号服务器,然后执行命令: + +```bash +# 部署栈,这个过程有点慢,因为需要拉取镜像,等! +docker stack deploy -c docker-compose.yml nacos-cluster + +# 命令完成后,需要等待 Nacos 启动,大概几十秒到一分钟这样!! +# 启动成功后,直接查看下面教程【Nacos后台】 + + +# --- 其他命令 --- + +# 部署后,不用了,可以使用这个 删除栈 +docker stack rm nacos-cluster + +# 可以查看Nacos的 实时日志: +docker service logs --follow nacos-cluster_nacos + +# 可以查看Mysql的 实时日志: +docker service logs --follow nacos-cluster_mysql + +# 查看 nacos-cluster 集群运行情况 +docker stack ps nacos-cluster + +# 持续观察服务副本数是否达到预期 +watch docker stack services nacos-cluster +``` + +### Nacos后台 + +选择一个地址浏览器打开,注册登录账户: + +- (http://192.168.139.84:8080)[http://192.168.139.84:8080] +- (http://192.168.139.15:8080)[http://192.168.139.15:8080] +- (http://192.168.139.178:8080)[http://192.168.139.178:8080] + +然后打开左侧导航 **配置管理** --> **配置列表** --> **导入配置** +选择 nacos_config.zip 导入即可。 + +### 其他后台: + +- [Prometheus](http://192.168.139.84:9090) +- [Grafana](http://192.168.139.84:3000) + - 默认账户:admin + - 默认密码:密码admin + +**结束** diff --git a/docker/nacos-cluster/docker-compose.yml b/docker/nacos-cluster/docker-compose.yml new file mode 100644 index 0000000..5cdd0e8 --- /dev/null +++ b/docker/nacos-cluster/docker-compose.yml @@ -0,0 +1,142 @@ +# 使用版本 3.8,它与 Swarm 模式兼容 +version: "3.8" + +# 定义服务 +services: + # MySQL 数据库服务 + mysql: + # 使用指定的 MySQL 镜像 + image: mysql:8.0.31 + # 使用环境变量文件,与原来的配置保持一致 + environment: + - MYSQL_ROOT_PASSWORD=root + - MYSQL_DATABASE=nacos_devtest + - MYSQL_USER=nacos + - MYSQL_PASSWORD=nacos + - LANG=C.UTF-8 + # 数据卷挂载,确保 MySQL 数据持久化 + volumes: + - mysql-data:/var/lib/mysql + - ./mysql-schema.sql:/docker-entrypoint-initdb.d/mysql-schema.sql + command: + --character-set-server=utf8mb4 + --collation-server=utf8mb4_unicode_ci + ports: + - "3306:3306" + # 健康检查,确保数据库启动完成后再启动 Nacos + healthcheck: + test: [ "CMD", "mysqladmin" ,"ping", "-h", "localhost" ] + interval: 5s + timeout: 10s + retries: 10 + # Swarm 部署配置 + deploy: + # 副本数为 1,因为单个数据库实例足够 + replicas: 1 + # 重启策略:任何情况下容器退出都自动重启 + restart_policy: + condition: any + # 将服务加入我们创建的网络 + networks: + - nacos-net + + # Nacos 服务 + nacos: + hostname: "nacos{{.Task.Slot}}" + # 使用 Nacos 镜像 + image: nacos/nacos-server:v3.1.0 + # 挂载日志目录 + volumes: + - nacos-logs:/home/nacos/logs + # 暴露 Nacos 所需的端口 + ports: + - "8080:8080" + - "7848:7848" + - "8848:8848" + - "9848:9848" + - "9849:9849" + # 使用环境变量文件 + environment: + - MODE=cluster + - PREFER_HOST_MODE=hostname + - NACOS_SERVERS=nacos1:8848 nacos2:8848 nacos3:8848 + - SPRING_DATASOURCE_PLATFORM=mysql + - MYSQL_SERVICE_HOST=mysql + - MYSQL_SERVICE_DB_NAME=nacos_devtest + - MYSQL_SERVICE_PORT=3306 + - MYSQL_SERVICE_USER=nacos + - MYSQL_SERVICE_PASSWORD=nacos + - MYSQL_SERVICE_RETRY_COUNT=10 + - MYSQL_SERVICE_RETRY_DELAY=5000 + - MYSQL_SERVICE_DB_PARAM=characterEncoding=utf8&connectTimeout=1000&socketTimeout=3000&autoReconnect=true&useSSL=false&allowPublicKeyRetrieval=true + - NACOS_SERVER_AUTH_ENABLE=false + - NACOS_CONSOLE_AUTH_ENABLE=false + - NACOS_AUTH_ENABLE=false + - NACOS_AUTH_IDENTITY_KEY=bmy + - NACOS_AUTH_IDENTITY_VALUE=lb714500. + - NACOS_AUTH_TOKEN=KjdAdzBIMTBtKElJS0NrWTIxNkJ0RXN4YXlHaipSUmdDZA== + # Swarm 部署配置 + deploy: + # 关键:指定副本数为 3,Swarm 会自动创建 3 个 Nacos 容器 + replicas: 3 + # 重启策略 + restart_policy: + condition: any + # 启动顺序控制 + # 这是 Swarm 中实现 "depends_on" 的方式 + # 它会在 mysql 服务健康检查通过后,才开始启动 Nacos 服务 + update_config: + parallelism: 1 + delay: 30s + + # 资源限制(可选,可根据你的服务器配置调整) + resources: + limits: + cpus: '0.50' + memory: '512M' + reservations: + cpus: '0.25' + memory: '256M' + networks: + - nacos-net + + # Prometheus 服务 + prometheus: + image: prom/prometheus:latest + volumes: + - ./prometheus/prometheus-cluster.yaml:/etc/prometheus/prometheus.yml + ports: + - "9090:9090" + deploy: + replicas: 1 + restart_policy: + condition: on-failure + update_config: + order: start-first + networks: + - nacos-net + + + # Grafana 服务 + grafana: + image: grafana/grafana:latest + ports: + - "3000:3000" + deploy: + # 通常 Grafana 单实例即可 + replicas: 1 + restart_policy: + condition: on-failure + networks: + - nacos-net + +volumes: + nacos-logs: + driver: local + + mysql-data: + driver: local + +networks: + nacos-net: + driver: overlay \ No newline at end of file diff --git a/docker/nacos-cluster/mysql-schema.sql b/docker/nacos-cluster/mysql-schema.sql new file mode 100644 index 0000000..73c7b12 --- /dev/null +++ b/docker/nacos-cluster/mysql-schema.sql @@ -0,0 +1,188 @@ +/* + * Copyright 1999-2018 Alibaba Group Holding Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +/******************************************/ +/* 表名称 = config_info */ +/******************************************/ +CREATE TABLE `config_info` +( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `data_id` varchar(255) NOT NULL COMMENT 'data_id', + `group_id` varchar(128) DEFAULT NULL COMMENT 'group_id', + `content` longtext NOT NULL COMMENT 'content', + `md5` varchar(32) DEFAULT NULL COMMENT 'md5', + `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', + `src_user` text COMMENT 'source user', + `src_ip` varchar(50) DEFAULT NULL COMMENT 'source ip', + `app_name` varchar(128) DEFAULT NULL COMMENT 'app_name', + `tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段', + `c_desc` varchar(256) DEFAULT NULL COMMENT 'configuration description', + `c_use` varchar(64) DEFAULT NULL COMMENT 'configuration usage', + `effect` varchar(64) DEFAULT NULL COMMENT '配置生效的描述', + `type` varchar(64) DEFAULT NULL COMMENT '配置的类型', + `c_schema` text COMMENT '配置的模式', + `encrypted_data_key` varchar(1024) NOT NULL DEFAULT '' COMMENT '密钥', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_configinfo_datagrouptenant` (`data_id`,`group_id`,`tenant_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_info'; + +/******************************************/ +/* 表名称 = config_info since 2.5.0 */ +/******************************************/ +CREATE TABLE `config_info_gray` +( + `id` bigint unsigned NOT NULL AUTO_INCREMENT COMMENT 'id', + `data_id` varchar(255) NOT NULL COMMENT 'data_id', + `group_id` varchar(128) NOT NULL COMMENT 'group_id', + `content` longtext NOT NULL COMMENT 'content', + `md5` varchar(32) DEFAULT NULL COMMENT 'md5', + `src_user` text COMMENT 'src_user', + `src_ip` varchar(100) DEFAULT NULL COMMENT 'src_ip', + `gmt_create` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT 'gmt_create', + `gmt_modified` datetime(3) NOT NULL DEFAULT CURRENT_TIMESTAMP(3) COMMENT 'gmt_modified', + `app_name` varchar(128) DEFAULT NULL COMMENT 'app_name', + `tenant_id` varchar(128) DEFAULT '' COMMENT 'tenant_id', + `gray_name` varchar(128) NOT NULL COMMENT 'gray_name', + `gray_rule` text NOT NULL COMMENT 'gray_rule', + `encrypted_data_key` varchar(256) NOT NULL DEFAULT '' COMMENT 'encrypted_data_key', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_configinfogray_datagrouptenantgray` (`data_id`,`group_id`,`tenant_id`,`gray_name`), + KEY `idx_dataid_gmt_modified` (`data_id`,`gmt_modified`), + KEY `idx_gmt_modified` (`gmt_modified`) +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='config_info_gray'; + +/******************************************/ +/* 表名称 = config_tags_relation */ +/******************************************/ +CREATE TABLE `config_tags_relation` +( + `id` bigint(20) NOT NULL COMMENT 'id', + `tag_name` varchar(128) NOT NULL COMMENT 'tag_name', + `tag_type` varchar(64) DEFAULT NULL COMMENT 'tag_type', + `data_id` varchar(255) NOT NULL COMMENT 'data_id', + `group_id` varchar(128) NOT NULL COMMENT 'group_id', + `tenant_id` varchar(128) DEFAULT '' COMMENT 'tenant_id', + `nid` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'nid, 自增长标识', + PRIMARY KEY (`nid`), + UNIQUE KEY `uk_configtagrelation_configidtag` (`id`,`tag_name`,`tag_type`), + KEY `idx_tenant_id` (`tenant_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='config_tag_relation'; + +/******************************************/ +/* 表名称 = group_capacity */ +/******************************************/ +CREATE TABLE `group_capacity` +( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID', + `group_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Group ID,空字符表示整个集群', + `quota` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '配额,0表示使用默认值', + `usage` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '使用量', + `max_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个配置大小上限,单位为字节,0表示使用默认值', + `max_aggr_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '聚合子配置最大个数,,0表示使用默认值', + `max_aggr_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值', + `max_history_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大变更历史数量', + `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_group_id` (`group_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='集群、各Group容量信息表'; + +/******************************************/ +/* 表名称 = his_config_info */ +/******************************************/ +CREATE TABLE `his_config_info` +( + `id` bigint(20) unsigned NOT NULL COMMENT 'id', + `nid` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'nid, 自增标识', + `data_id` varchar(255) NOT NULL COMMENT 'data_id', + `group_id` varchar(128) NOT NULL COMMENT 'group_id', + `app_name` varchar(128) DEFAULT NULL COMMENT 'app_name', + `content` longtext NOT NULL COMMENT 'content', + `md5` varchar(32) DEFAULT NULL COMMENT 'md5', + `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', + `src_user` text COMMENT 'source user', + `src_ip` varchar(50) DEFAULT NULL COMMENT 'source ip', + `op_type` char(10) DEFAULT NULL COMMENT 'operation type', + `tenant_id` varchar(128) DEFAULT '' COMMENT '租户字段', + `encrypted_data_key` varchar(1024) NOT NULL DEFAULT '' COMMENT '密钥', + `publish_type` varchar(50) DEFAULT 'formal' COMMENT 'publish type gray or formal', + `gray_name` varchar(50) DEFAULT NULL COMMENT 'gray name', + `ext_info` longtext DEFAULT NULL COMMENT 'ext info', + PRIMARY KEY (`nid`), + KEY `idx_gmt_create` (`gmt_create`), + KEY `idx_gmt_modified` (`gmt_modified`), + KEY `idx_did` (`data_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='多租户改造'; + + +/******************************************/ +/* 表名称 = tenant_capacity */ +/******************************************/ +CREATE TABLE `tenant_capacity` +( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键ID', + `tenant_id` varchar(128) NOT NULL DEFAULT '' COMMENT 'Tenant ID', + `quota` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '配额,0表示使用默认值', + `usage` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '使用量', + `max_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个配置大小上限,单位为字节,0表示使用默认值', + `max_aggr_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '聚合子配置最大个数', + `max_aggr_size` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '单个聚合数据的子配置大小上限,单位为字节,0表示使用默认值', + `max_history_count` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '最大变更历史数量', + `gmt_create` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间', + `gmt_modified` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_tenant_id` (`tenant_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='租户容量信息表'; + + +CREATE TABLE `tenant_info` +( + `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'id', + `kp` varchar(128) NOT NULL COMMENT 'kp', + `tenant_id` varchar(128) default '' COMMENT 'tenant_id', + `tenant_name` varchar(128) default '' COMMENT 'tenant_name', + `tenant_desc` varchar(256) DEFAULT NULL COMMENT 'tenant_desc', + `create_source` varchar(32) DEFAULT NULL COMMENT 'create_source', + `gmt_create` bigint(20) NOT NULL COMMENT '创建时间', + `gmt_modified` bigint(20) NOT NULL COMMENT '修改时间', + PRIMARY KEY (`id`), + UNIQUE KEY `uk_tenant_info_kptenantid` (`kp`,`tenant_id`), + KEY `idx_tenant_id` (`tenant_id`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin COMMENT='tenant_info'; + +CREATE TABLE `users` +( + `username` varchar(50) NOT NULL PRIMARY KEY COMMENT 'username', + `password` varchar(500) NOT NULL COMMENT 'password', + `enabled` boolean NOT NULL COMMENT 'enabled' +); + +CREATE TABLE `roles` +( + `username` varchar(50) NOT NULL COMMENT 'username', + `role` varchar(50) NOT NULL COMMENT 'role', + UNIQUE INDEX `idx_user_role` (`username` ASC, `role` ASC) USING BTREE +); + +CREATE TABLE `permissions` +( + `role` varchar(50) NOT NULL COMMENT 'role', + `resource` varchar(128) NOT NULL COMMENT 'resource', + `action` varchar(8) NOT NULL COMMENT 'action', + UNIQUE INDEX `uk_role_permission` (`role`,`resource`,`action`) USING BTREE +); diff --git a/docker/nacos-cluster/nacos_config_export.zip b/docker/nacos-cluster/nacos_config_export.zip new file mode 100644 index 0000000000000000000000000000000000000000..a5e62c20cdca8d2dcf40fb2c5bd4ee0176aad7ee GIT binary patch literal 622 zcmWIWW@Zs#;Nak3_}yX?&42_%fovC7H^)$)ka+hX|Ih&aq{QOX(4w5x&w?13RHt7t zT7Klwl?#hxRJB=`_Dq_@q+MI&Bk6{Tuw&C!GFEIA3ReJOL-=)y(eP-- init, term=0, lastLogId=LogId [index=0, term=0], conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:10,929 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:17:10,969 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=27 ms - -2025-09-22 01:17:10,970 INFO Node become leader of group, term=1, conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:10,977 INFO -Djraft.recyclers.maxCapacityPerThread: 4096. - -2025-09-22 01:17:10,987 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:17:10,987 INFO Start the RaftGroupService successfully. - -2025-09-22 01:17:11,017 INFO onLeaderStart: term=1. - -2025-09-22 01:17:11,050 INFO The number of active nodes increment to 2. - -2025-09-22 01:17:11,207 INFO Starts FSMCaller successfully. - -2025-09-22 01:17:11,208 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service/snapshot. - -2025-09-22 01:17:11,211 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:11,213 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:17:11,219 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=5 ms - -2025-09-22 01:17:11,220 INFO Node become leader of group, term=1, conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:11,221 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:17:11,221 INFO Start the RaftGroupService successfully. - -2025-09-22 01:17:11,231 INFO onLeaderStart: term=1. - -2025-09-22 01:17:11,242 INFO Creating new channel to: d97c29d750b4:7848. - -2025-09-22 01:17:11,265 INFO The channel d97c29d750b4:7848 is in state: CONNECTING. - -2025-09-22 01:17:11,273 INFO The number of active nodes increment to 3. - -2025-09-22 01:17:11,398 INFO Starts FSMCaller successfully. - -2025-09-22 01:17:11,398 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot. - -2025-09-22 01:17:11,401 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:11,402 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:17:11,407 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=4 ms - -2025-09-22 01:17:11,407 INFO Node become leader of group, term=1, conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:11,408 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:17:11,408 INFO Start the RaftGroupService successfully. - -2025-09-22 01:17:11,413 INFO onLeaderStart: term=1. - -2025-09-22 01:17:11,414 INFO The number of active nodes increment to 4. - -2025-09-22 01:17:11,538 INFO Starts FSMCaller successfully. - -2025-09-22 01:17:11,538 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_service_metadata/snapshot. - -2025-09-22 01:17:11,540 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:11,541 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:17:11,546 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=5 ms - -2025-09-22 01:17:11,547 INFO Node become leader of group, term=1, conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:11,548 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:17:11,548 INFO Start the RaftGroupService successfully. - -2025-09-22 01:17:11,553 INFO onLeaderStart: term=1. - -2025-09-22 01:17:11,671 INFO The channel d97c29d750b4:7848 is in state: READY. - -2025-09-22 01:17:11,671 INFO The channel d97c29d750b4:7848 has successfully established. - -2025-09-22 01:17:11,934 INFO The number of active nodes increment to 5. - -2025-09-22 01:17:12,065 INFO Starts FSMCaller successfully. - -2025-09-22 01:17:12,065 WARN No data for snapshot reader /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot. - -2025-09-22 01:17:12,067 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:12,068 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:17:12,074 INFO Save raft meta, path=/home/nacos/data/protocol/raft/lock_acquire_service_v2/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=6 ms - -2025-09-22 01:17:12,074 INFO Node become leader of group, term=1, conf=d97c29d750b4:7848, oldConf=. - -2025-09-22 01:17:12,075 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:17:12,075 INFO Start the RaftGroupService successfully. - -2025-09-22 01:17:12,298 INFO onLeaderStart: term=1. - -2025-09-22 01:34:20,825 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_1. - -2025-09-22 01:34:20,826 INFO Renaming /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_1. - -2025-09-22 01:43:44,805 INFO Deleting snapshot /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot/snapshot_1. - -2025-09-22 01:43:44,805 INFO Renaming /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot/temp to /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot/snapshot_1. - -2025-09-22 01:45:01,542 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_1. - -2025-09-22 01:45:01,542 INFO Renaming /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_1. - -2025-09-22 01:45:29,319 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_1. - -2025-09-22 01:45:29,319 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_1. - -2025-09-22 01:45:53,354 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_1. - -2025-09-22 01:45:53,354 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_1. - -2025-09-22 01:49:55,805 INFO Node shutdown, currTerm=1 state=STATE_LEADER. - -2025-09-22 01:49:55,807 INFO Fail to find the next candidate, group lock_acquire_service_v2. - -2025-09-22 01:49:55,807 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.]. - -2025-09-22 01:49:55,815 INFO Save raft meta, path=/home/nacos/data/protocol/raft/lock_acquire_service_v2/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=5 ms - -2025-09-22 01:49:55,815 INFO Shutting down FSMCaller... - -2025-09-22 01:49:55,816 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@40865606[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,816 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@68e5b70b[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,816 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-'}. - -2025-09-22 01:49:55,816 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-'}. - -2025-09-22 01:49:55,816 INFO onShutdown. - -2025-09-22 01:49:55,816 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-'}. - -2025-09-22 01:49:55,817 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-'}. - -2025-09-22 01:49:55,817 INFO The number of active nodes decrement to 4. - -2025-09-22 01:49:55,817 INFO Node shutdown, currTerm=1 state=STATE_SHUTTING. - -2025-09-22 01:49:55,817 INFO Stop the RaftGroupService successfully. - -2025-09-22 01:49:55,817 INFO Node shutdown, currTerm=1 state=STATE_LEADER. - -2025-09-22 01:49:55,818 INFO Fail to find the next candidate, group naming_service_metadata. - -2025-09-22 01:49:55,818 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.]. - -2025-09-22 01:49:55,829 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=11 ms - -2025-09-22 01:49:55,829 INFO Shutting down FSMCaller... - -2025-09-22 01:49:55,829 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@3e7d545c[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,830 INFO onShutdown. - -2025-09-22 01:49:55,830 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@7be5f177[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,830 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-'}. - -2025-09-22 01:49:55,830 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-'}. - -2025-09-22 01:49:55,830 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-'}. - -2025-09-22 01:49:55,830 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-'}. - -2025-09-22 01:49:55,831 INFO Node shutdown, currTerm=1 state=STATE_SHUTTING. - -2025-09-22 01:49:55,831 INFO Stop the RaftGroupService successfully. - -2025-09-22 01:49:55,831 INFO Node shutdown, currTerm=1 state=STATE_LEADER. - -2025-09-22 01:49:55,830 INFO The number of active nodes decrement to 3. - -2025-09-22 01:49:55,831 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.]. - -2025-09-22 01:49:55,831 INFO Fail to find the next candidate, group naming_persistent_service. - -2025-09-22 01:49:55,840 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/lock_acquire_service_v2/log. - -2025-09-22 01:49:55,840 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_service_metadata/log. - -2025-09-22 01:49:55,844 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=11 ms - -2025-09-22 01:49:55,844 INFO Shutting down FSMCaller... - -2025-09-22 01:49:55,844 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@2bb5a20c[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,844 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@7f3ecc92[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,844 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-'}. - -2025-09-22 01:49:55,844 INFO onShutdown. - -2025-09-22 01:49:55,844 INFO The number of active nodes decrement to 2. - -2025-09-22 01:49:55,844 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-'}. - -2025-09-22 01:49:55,845 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-'}. - -2025-09-22 01:49:55,845 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-'}. - -2025-09-22 01:49:55,845 INFO Node shutdown, currTerm=1 state=STATE_SHUTTING. - -2025-09-22 01:49:55,845 INFO Stop the RaftGroupService successfully. - -2025-09-22 01:49:55,845 INFO Node shutdown, currTerm=1 state=STATE_LEADER. - -2025-09-22 01:49:55,845 INFO Fail to find the next candidate, group naming_instance_metadata. - -2025-09-22 01:49:55,846 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.]. - -2025-09-22 01:49:55,847 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_persistent_service/log. - -2025-09-22 01:49:55,853 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=5 ms - -2025-09-22 01:49:55,853 INFO Shutting down FSMCaller... - -2025-09-22 01:49:55,853 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@42accfc7[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,853 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@448fa05c[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,854 INFO onShutdown. - -2025-09-22 01:49:55,854 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-'}. - -2025-09-22 01:49:55,854 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-'}. - -2025-09-22 01:49:55,854 INFO The number of active nodes decrement to 1. - -2025-09-22 01:49:55,854 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-'}. - -2025-09-22 01:49:55,854 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-'}. - -2025-09-22 01:49:55,854 INFO Node shutdown, currTerm=1 state=STATE_SHUTTING. - -2025-09-22 01:49:55,854 INFO Stop the RaftGroupService successfully. - -2025-09-22 01:49:55,854 INFO Node shutdown, currTerm=1 state=STATE_LEADER. - -2025-09-22 01:49:55,854 INFO Fail to find the next candidate, group naming_persistent_service_v2. - -2025-09-22 01:49:55,854 INFO onLeaderStop: status=Status[ESHUTDOWN<1007>: Raft node is going to quit.]. - -2025-09-22 01:49:55,858 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_instance_metadata/log. - -2025-09-22 01:49:55,862 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=1, votedFor=d97c29d750b4:7848, cost time=7 ms - -2025-09-22 01:49:55,863 INFO Shutting down FSMCaller... - -2025-09-22 01:49:55,863 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@41762d5f[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,863 INFO ThreadPool is terminated: JRaft-Node-ScheduleThreadPool, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@65800041[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 0]. - -2025-09-22 01:49:55,863 INFO onShutdown. - -2025-09-22 01:49:55,863 INFO The number of active nodes decrement to 0. - -2025-09-22 01:49:55,870 INFO ThreadPool is terminated: JRaft-Global-ElectionTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@1c027299[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 5]. - -2025-09-22 01:49:55,870 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-ElectionTimer-'}. - -2025-09-22 01:49:55,870 INFO ThreadPool is terminated: JRaft-Global-VoteTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@5d0bfaca[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 5]. - -2025-09-22 01:49:55,870 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=5000, name='JRaft-VoteTimer-'}. - -2025-09-22 01:49:55,872 INFO ThreadPool is terminated: JRaft-Global-StepDownTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@5dc137f9[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 3925]. - -2025-09-22 01:49:55,873 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=2500, name='JRaft-StepDownTimer-'}. - -2025-09-22 01:49:55,874 INFO ThreadPool is terminated: JRaft-Global-SnapshotTimer, com.alipay.sofa.jraft.util.MetricScheduledThreadPoolExecutor@c0a0237[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 5]. - -2025-09-22 01:49:55,875 INFO Destroy timer: RepeatedTimer{timeout=null, stopped=true, running=false, destroyed=true, invoking=false, timeoutMs=1800000, name='JRaft-SnapshotTimer-'}. - -2025-09-22 01:49:55,875 INFO Node shutdown, currTerm=1 state=STATE_SHUTTING. - -2025-09-22 01:49:55,875 INFO Stop the RaftGroupService successfully. - -2025-09-22 01:49:55,875 INFO Shutdown managed channel: d97c29d750b4:7848, ManagedChannelOrphanWrapper{delegate=ManagedChannelImpl{logId=10, target=d97c29d750b4:7848}}. - -2025-09-22 01:49:55,877 INFO The channel d97c29d750b4:7848 is in state: SHUTDOWN. - -2025-09-22 01:49:55,877 WARN This channel d97c29d750b4:7848 has started shutting down. Any new RPCs should fail immediately. - -2025-09-22 01:49:55,880 INFO DB destroyed, the db path is: /home/nacos/data/protocol/raft/naming_persistent_service_v2/log. - -2025-09-22 01:49:55,884 INFO Connection disconnected: /192.168.97.3:37040 - -2025-09-22 01:49:55,891 INFO ThreadPool is terminated: JRaft-RPC-Processor, com.alipay.sofa.jraft.util.MetricThreadPoolExecutor@32647569[Shutting down, pool size = 0, active threads = 0, queued tasks = 0, completed tasks = 2884]. - -2025-09-22 01:50:09,971 INFO SPI service [com.alipay.sofa.jraft.JRaftServiceFactory - com.alipay.sofa.jraft.core.DefaultJRaftServiceFactory] loading. - -2025-09-22 01:50:10,077 INFO SPI service [com.alipay.sofa.jraft.rpc.RaftRpcFactory - com.alipay.sofa.jraft.rpc.impl.GrpcRaftRpcFactory] loading. - -2025-09-22 01:50:10,315 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeDescribeSignalHandler] loading. - -2025-09-22 01:50:10,317 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.NodeMetricsSignalHandler] loading. - -2025-09-22 01:50:10,318 INFO SPI service [com.alipay.sofa.jraft.util.JRaftSignalHandler - com.alipay.sofa.jraft.ThreadPoolMetricsSignalHandler] loading. - -2025-09-22 01:50:10,322 INFO SPI service [com.alipay.sofa.jraft.util.timer.RaftTimerFactory - com.alipay.sofa.jraft.util.timer.DefaultRaftTimerFactory] loading. - -2025-09-22 01:50:10,327 INFO The number of active nodes increment to 1. - -2025-09-22 01:50:10,813 INFO Starts FSMCaller successfully. - -2025-09-22 01:50:10,819 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot. - -2025-09-22 01:50:10,830 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:10,832 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:50:10,857 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service_v2/meta-data, term=1, votedFor=8e5a20eec60e:7848, cost time=20 ms - -2025-09-22 01:50:10,857 INFO Node become leader of group, term=1, conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:10,859 INFO -Djraft.recyclers.maxCapacityPerThread: 4096. - -2025-09-22 01:50:10,862 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:50:10,862 INFO Start the RaftGroupService successfully. - -2025-09-22 01:50:10,875 INFO onLeaderStart: term=1. - -2025-09-22 01:50:10,888 INFO The number of active nodes increment to 2. - -2025-09-22 01:50:10,955 INFO Creating new channel to: 8e5a20eec60e:7848. - -2025-09-22 01:50:10,963 INFO The channel 8e5a20eec60e:7848 is in state: CONNECTING. - -2025-09-22 01:50:10,974 INFO Starts FSMCaller successfully. - -2025-09-22 01:50:10,974 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_persistent_service/snapshot. - -2025-09-22 01:50:10,976 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:10,977 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:50:10,982 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_persistent_service/meta-data, term=1, votedFor=8e5a20eec60e:7848, cost time=5 ms - -2025-09-22 01:50:10,982 INFO Node become leader of group, term=1, conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:10,984 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:50:10,984 INFO Start the RaftGroupService successfully. - -2025-09-22 01:50:10,987 INFO onLeaderStart: term=1. - -2025-09-22 01:50:11,019 INFO The number of active nodes increment to 3. - -2025-09-22 01:50:11,130 INFO Starts FSMCaller successfully. - -2025-09-22 01:50:11,130 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot. - -2025-09-22 01:50:11,131 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:11,132 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:50:11,137 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_instance_metadata/meta-data, term=1, votedFor=8e5a20eec60e:7848, cost time=4 ms - -2025-09-22 01:50:11,137 INFO Node become leader of group, term=1, conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:11,138 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:50:11,138 INFO Start the RaftGroupService successfully. - -2025-09-22 01:50:11,143 INFO The number of active nodes increment to 4. - -2025-09-22 01:50:11,144 INFO onLeaderStart: term=1. - -2025-09-22 01:50:11,260 INFO Starts FSMCaller successfully. - -2025-09-22 01:50:11,260 WARN No data for snapshot reader /home/nacos/data/protocol/raft/naming_service_metadata/snapshot. - -2025-09-22 01:50:11,263 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:11,265 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:50:11,265 INFO The channel 8e5a20eec60e:7848 is in state: READY. - -2025-09-22 01:50:11,266 INFO The channel 8e5a20eec60e:7848 has successfully established. - -2025-09-22 01:50:11,270 INFO Save raft meta, path=/home/nacos/data/protocol/raft/naming_service_metadata/meta-data, term=1, votedFor=8e5a20eec60e:7848, cost time=4 ms - -2025-09-22 01:50:11,270 INFO Node become leader of group, term=1, conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:11,271 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:50:11,271 INFO Start the RaftGroupService successfully. - -2025-09-22 01:50:11,275 INFO onLeaderStart: term=1. - -2025-09-22 01:50:11,614 INFO The number of active nodes increment to 5. - -2025-09-22 01:50:11,726 INFO Starts FSMCaller successfully. - -2025-09-22 01:50:11,727 WARN No data for snapshot reader /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot. - -2025-09-22 01:50:11,728 INFO Node init, term=0, lastLogId=LogId [index=0, term=0], conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:11,730 INFO Node start vote and grant vote self, term=0. - -2025-09-22 01:50:11,735 INFO Save raft meta, path=/home/nacos/data/protocol/raft/lock_acquire_service_v2/meta-data, term=1, votedFor=8e5a20eec60e:7848, cost time=5 ms - -2025-09-22 01:50:11,736 INFO Node become leader of group, term=1, conf=8e5a20eec60e:7848, oldConf=. - -2025-09-22 01:50:11,736 WARN RPC server is not started in RaftGroupService. - -2025-09-22 01:50:11,736 INFO Start the RaftGroupService successfully. - -2025-09-22 01:50:11,860 INFO onLeaderStart: term=1. - -2025-09-22 02:06:11,715 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_1. - -2025-09-22 02:06:11,715 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service/snapshot/snapshot_1. - -2025-09-22 02:08:53,517 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_1. - -2025-09-22 02:08:53,518 INFO Renaming /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_instance_metadata/snapshot/snapshot_1. - -2025-09-22 02:13:51,045 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_1. - -2025-09-22 02:13:51,046 INFO Renaming /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/temp to /home/nacos/data/protocol/raft/naming_service_metadata/snapshot/snapshot_1. - -2025-09-22 02:14:37,481 INFO Deleting snapshot /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_1. - -2025-09-22 02:14:37,481 INFO Renaming /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/temp to /home/nacos/data/protocol/raft/naming_persistent_service_v2/snapshot/snapshot_1. - -2025-09-22 02:18:27,203 INFO Deleting snapshot /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot/snapshot_1. - -2025-09-22 02:18:27,204 INFO Renaming /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot/temp to /home/nacos/data/protocol/raft/lock_acquire_service_v2/snapshot/snapshot_1. - diff --git a/docker/nacos/standalone-logs/cmdb-main.log b/docker/nacos/standalone-logs/cmdb-main.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/config-client-request.log b/docker/nacos/standalone-logs/config-client-request.log deleted file mode 100644 index 348d57c..0000000 --- a/docker/nacos/standalone-logs/config-client-request.log +++ /dev/null @@ -1,137 +0,0 @@ -2025-09-26 00:07:45,463|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:08:00,735|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:08:00,754|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:08:12,437|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:12:30,613|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:12:30,618|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:12:40,008|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:12:40,030|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:13:17,783|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:14:37,573|opType: get | rt: 8ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:14:37,576|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:22:45,735|opType: get | rt: 4ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:24:09,172|opType: get | rt: 6ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:24:09,200|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:40:33,479|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:40:33,492|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:43:35,440|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:43:35,466|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:48:31,590|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:48:42,312|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:48:42,332|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:48:56,979|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:49:01,702|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:49:09,228|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:49:46,383|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:49:46,410|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:49:51,489|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:49:51,528|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:51:21,455|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:51:21,466|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:51:42,227|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:51:42,249|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:51:53,206|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:51:53,232|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:52:28,268|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:52:28,287|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:52:42,661|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:52:42,681|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:52:56,804|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:52:56,823|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:53:14,886|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:53:22,727|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:53:22,732|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:53:24,857|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:53:24,884|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:54:46,665|opType: delete | rt: 126ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: DevBaseUrl | group: DEFAULT_GROUP | tenant: public | md5: d95df047a29e8ba8bd2f8ddd5b0de5d8 -2025-09-26 00:54:46,724|opType: delete | rt: 8ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: prodBaseUrl | group: DEFAULT_GROUP | tenant: public | md5: 05a3bc870e145610c22935fd73e6fdc8 -2025-09-26 00:55:53,877|opType: publish | rt: 79ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: visualizerConfig | group: DEFAULT_GROUP | tenant: public | md5: 778069eef9964541342ec909021e6be6 -2025-09-26 00:57:05,453|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 00:57:05,466|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: visualizerConfig | group: DEFAULT_GROUP | tenant: public | md5: 778069eef9964541342ec909021e6be6 -2025-09-26 01:02:55,154|opType: delete | rt: 18ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: visualizerConfig | group: DEFAULT_GROUP | tenant: public | md5: 778069eef9964541342ec909021e6be6 -2025-09-26 01:08:12,982|opType: publish | rt: 31ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: apiUrlList | group: DEFAULT_GROUP | tenant: public | md5: 1e6e9f3b92d871c7b47a1d1284e7d14b -2025-09-26 01:08:35,898|opType: publish | rt: 41ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: apiUrlList | group: DEFAULT_GROUP | tenant: public | md5: 2daaae05c2fef2db0fddfe9152c958f4 -2025-09-26 01:10:04,492|opType: delete | rt: 10ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: apiUrlList | group: DEFAULT_GROUP | tenant: public | md5: 2daaae05c2fef2db0fddfe9152c958f4 -2025-09-26 01:10:58,670|opType: publish | rt: 16ms | status: success | requestIp: fd07:b51a:cc66:d000:0:0:0:1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:12:16,519|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:12:16,526|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:15:27,182|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:15:27,189|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:16:04,840|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:16:04,848|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:16:04,860|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:16:04,865|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:19:53,576|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:19:53,583|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:20:00,993|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:20:01,011|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:21:15,091|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:21:15,103|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:21:18,837|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:21:18,843|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:22:44,952|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:22:44,959|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:23:01,454|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:23:01,461|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:23:36,393|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:23:36,398|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:24:14,991|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:24:14,996|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:26:09,918|opType: get | rt: 12ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:26:09,924|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:26:15,000|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:26:15,005|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:29:44,152|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:29:44,156|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:30:09,747|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:30:09,751|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:30:43,528|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:30:43,532|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:31:09,024|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:31:09,028|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:31:20,873|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:31:20,877|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:31:30,302|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:31:30,307|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:32:16,408|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:32:16,413|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:32:26,945|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:32:26,949|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:32:34,696|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:32:34,701|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:33:01,373|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:33:01,377|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:33:24,437|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:33:24,446|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:33:57,383|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:33:57,388|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:36:19,102|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:36:19,106|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:38:53,230|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:38:53,238|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:39:23,223|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:39:23,227|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:43:42,670|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:43:42,676|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:44:16,598|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:44:16,603|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:44:58,909|opType: get | rt: 3ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:44:58,913|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:45:30,649|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:45:30,660|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:45:56,739|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:45:56,745|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:46:45,753|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:46:45,759|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:47:50,738|opType: get | rt: 4ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:47:50,744|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:48:05,900|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:48:05,905|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:48:18,567|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:48:18,573|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:48:32,953|opType: get | rt: 2ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:48:32,958|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:48:53,657|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:48:53,662|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b -2025-09-26 01:49:13,206|opType: get | rt: 0ms | status: success | requestIp: 192.168.97.1 | dataId: baseUrl | group: DEFAULT_GROUP | tenant: public | md5: c8b41bfbe4647c7cd5f4f7a802f4ce7d -2025-09-26 01:49:13,213|opType: get | rt: 1ms | status: success | requestIp: 192.168.97.1 | dataId: httpTimeOut | group: DEFAULT_GROUP | tenant: public | md5: b7a782741f667201b54880c925faec4b diff --git a/docker/nacos/standalone-logs/config-dump.log b/docker/nacos/standalone-logs/config-dump.log deleted file mode 100644 index 470eab3..0000000 --- a/docker/nacos/standalone-logs/config-dump.log +++ /dev/null @@ -1,64 +0,0 @@ -2025-09-26 00:54:46,667 INFO [dump] add formal task. groupKey=DevBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,725 INFO [dump] add formal task. groupKey=prodBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,753 INFO [dump] process formal task. groupKey=prodBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,759 INFO [dump] remove local disk cache,groupKey=prodBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,763 INFO [dump] remove local jvm cache,groupKey=prodBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,767 INFO [dump] process formal task. groupKey=DevBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,809 INFO [dump] remove local disk cache,groupKey=DevBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:54:46,810 INFO [dump] remove local jvm cache,groupKey=DevBaseUrl+DEFAULT_GROUP+public - -2025-09-26 00:55:53,878 INFO [dump] add formal task. groupKey=visualizerConfig+DEFAULT_GROUP+public - -2025-09-26 00:55:53,957 INFO [dump] process formal task. groupKey=visualizerConfig+DEFAULT_GROUP+public - -2025-09-26 00:55:53,988 INFO [dump] md5 changed, save to disk cache ,groupKey=visualizerConfig+DEFAULT_GROUP+public, newMd5=778069eef9964541342ec909021e6be6,oldMd5= - -2025-09-26 00:55:54,039 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=visualizerConfig+DEFAULT_GROUP+public, newMd5=778069eef9964541342ec909021e6be6,oldMd5=,lastModifiedTs=1758819353826 - -2025-09-26 01:02:55,154 INFO [dump] add formal task. groupKey=visualizerConfig+DEFAULT_GROUP+public - -2025-09-26 01:02:55,205 INFO [dump] process formal task. groupKey=visualizerConfig+DEFAULT_GROUP+public - -2025-09-26 01:02:55,205 INFO [dump] remove local disk cache,groupKey=visualizerConfig+DEFAULT_GROUP+public - -2025-09-26 01:02:55,205 INFO [dump] remove local jvm cache,groupKey=visualizerConfig+DEFAULT_GROUP+public - -2025-09-26 01:08:12,982 INFO [dump] add formal task. groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:08:13,041 INFO [dump] process formal task. groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:08:13,044 INFO [dump] md5 changed, save to disk cache ,groupKey=apiUrlList+DEFAULT_GROUP+public, newMd5=1e6e9f3b92d871c7b47a1d1284e7d14b,oldMd5= - -2025-09-26 01:08:13,047 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=apiUrlList+DEFAULT_GROUP+public, newMd5=1e6e9f3b92d871c7b47a1d1284e7d14b,oldMd5=,lastModifiedTs=1758820092970 - -2025-09-26 01:08:35,898 INFO [dump] add formal task. groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:08:35,951 INFO [dump] process formal task. groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:08:35,952 INFO [dump] md5 changed, save to disk cache ,groupKey=apiUrlList+DEFAULT_GROUP+public, newMd5=2daaae05c2fef2db0fddfe9152c958f4,oldMd5=1e6e9f3b92d871c7b47a1d1284e7d14b - -2025-09-26 01:08:35,953 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=apiUrlList+DEFAULT_GROUP+public, newMd5=2daaae05c2fef2db0fddfe9152c958f4,oldMd5=1e6e9f3b92d871c7b47a1d1284e7d14b,lastModifiedTs=1758820115891 - -2025-09-26 01:10:04,492 INFO [dump] add formal task. groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:10:04,558 INFO [dump] process formal task. groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:10:04,558 INFO [dump] remove local disk cache,groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:10:04,559 INFO [dump] remove local jvm cache,groupKey=apiUrlList+DEFAULT_GROUP+public - -2025-09-26 01:10:58,669 INFO [dump] add formal task. groupKey=httpTimeOut+DEFAULT_GROUP+public - -2025-09-26 01:10:58,708 INFO [dump] process formal task. groupKey=httpTimeOut+DEFAULT_GROUP+public - -2025-09-26 01:10:58,710 INFO [dump] md5 changed, save to disk cache ,groupKey=httpTimeOut+DEFAULT_GROUP+public, newMd5=b7a782741f667201b54880c925faec4b,oldMd5= - -2025-09-26 01:10:58,712 INFO [dump] md5 changed, update md5 and timestamp in jvm cache ,groupKey=httpTimeOut+DEFAULT_GROUP+public, newMd5=b7a782741f667201b54880c925faec4b,oldMd5=,lastModifiedTs=1758820258664 - diff --git a/docker/nacos/standalone-logs/config-fatal.log b/docker/nacos/standalone-logs/config-fatal.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/config-memory.log b/docker/nacos/standalone-logs/config-memory.log deleted file mode 100644 index 4c2001f..0000000 --- a/docker/nacos/standalone-logs/config-memory.log +++ /dev/null @@ -1,5320 +0,0 @@ -2025-09-26 00:00:06,755 INFO [long-pulling] client count 0 - -2025-09-26 00:00:06,756 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:00:07,254 INFO toNotifyTaskSize = 0 - -2025-09-26 00:00:07,254 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:00:16,765 INFO [long-pulling] client count 0 - -2025-09-26 00:00:16,765 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:00:17,254 INFO toNotifyTaskSize = 0 - -2025-09-26 00:00:17,254 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:00:26,765 INFO [long-pulling] client count 0 - -2025-09-26 00:00:26,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:00:27,258 INFO toNotifyTaskSize = 0 - -2025-09-26 00:00:27,258 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:00:36,766 INFO [long-pulling] client count 0 - -2025-09-26 00:00:36,766 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:00:37,259 INFO toNotifyTaskSize = 0 - -2025-09-26 00:00:37,259 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:00:46,766 INFO [long-pulling] client count 0 - -2025-09-26 00:00:46,767 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:00:47,260 INFO toNotifyTaskSize = 0 - -2025-09-26 00:00:47,260 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:00:56,767 INFO [long-pulling] client count 0 - -2025-09-26 00:00:56,768 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:00:57,261 INFO toNotifyTaskSize = 0 - -2025-09-26 00:00:57,261 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:01:06,768 INFO [long-pulling] client count 0 - -2025-09-26 00:01:06,769 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:01:07,261 INFO toNotifyTaskSize = 0 - -2025-09-26 00:01:07,261 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:01:16,768 INFO [long-pulling] client count 0 - -2025-09-26 00:01:16,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:01:17,262 INFO toNotifyTaskSize = 0 - -2025-09-26 00:01:17,262 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:01:26,768 INFO [long-pulling] client count 0 - -2025-09-26 00:01:26,770 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:01:27,263 INFO toNotifyTaskSize = 0 - -2025-09-26 00:01:27,263 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:01:36,769 INFO [long-pulling] client count 0 - -2025-09-26 00:01:36,771 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:01:37,264 INFO toNotifyTaskSize = 0 - -2025-09-26 00:01:37,264 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:01:46,769 INFO [long-pulling] client count 0 - -2025-09-26 00:01:46,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:01:47,265 INFO toNotifyTaskSize = 0 - -2025-09-26 00:01:47,265 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:01:56,770 INFO [long-pulling] client count 0 - -2025-09-26 00:01:56,772 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:01:57,265 INFO toNotifyTaskSize = 0 - -2025-09-26 00:01:57,266 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:02:06,770 INFO [long-pulling] client count 0 - -2025-09-26 00:02:06,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:02:07,266 INFO toNotifyTaskSize = 0 - -2025-09-26 00:02:07,266 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:02:16,771 INFO [long-pulling] client count 0 - -2025-09-26 00:02:16,773 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:02:17,266 INFO toNotifyTaskSize = 0 - -2025-09-26 00:02:17,266 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:02:26,772 INFO [long-pulling] client count 0 - -2025-09-26 00:02:26,774 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:02:27,267 INFO toNotifyTaskSize = 0 - -2025-09-26 00:02:27,267 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:02:36,773 INFO [long-pulling] client count 0 - -2025-09-26 00:02:36,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:02:37,268 INFO toNotifyTaskSize = 0 - -2025-09-26 00:02:37,268 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:02:46,773 INFO [long-pulling] client count 0 - -2025-09-26 00:02:46,776 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:02:47,268 INFO toNotifyTaskSize = 0 - -2025-09-26 00:02:47,268 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:02:56,774 INFO [long-pulling] client count 0 - -2025-09-26 00:02:56,777 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:02:57,268 INFO toNotifyTaskSize = 0 - -2025-09-26 00:02:57,269 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:03:06,775 INFO [long-pulling] client count 0 - -2025-09-26 00:03:06,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:03:07,270 INFO toNotifyTaskSize = 0 - -2025-09-26 00:03:07,270 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:03:16,776 INFO [long-pulling] client count 0 - -2025-09-26 00:03:16,778 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:03:17,270 INFO toNotifyTaskSize = 0 - -2025-09-26 00:03:17,270 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:03:26,776 INFO [long-pulling] client count 0 - -2025-09-26 00:03:26,779 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:03:27,271 INFO toNotifyTaskSize = 0 - -2025-09-26 00:03:27,271 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:03:36,777 INFO [long-pulling] client count 0 - -2025-09-26 00:03:36,780 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:03:37,272 INFO toNotifyTaskSize = 0 - -2025-09-26 00:03:37,272 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:03:46,778 INFO [long-pulling] client count 0 - -2025-09-26 00:03:46,781 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:03:47,272 INFO toNotifyTaskSize = 0 - -2025-09-26 00:03:47,272 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:03:56,778 INFO [long-pulling] client count 0 - -2025-09-26 00:03:56,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:03:57,273 INFO toNotifyTaskSize = 0 - -2025-09-26 00:03:57,273 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:04:06,779 INFO [long-pulling] client count 0 - -2025-09-26 00:04:06,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:04:07,273 INFO toNotifyTaskSize = 0 - -2025-09-26 00:04:07,273 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:04:16,780 INFO [long-pulling] client count 0 - -2025-09-26 00:04:16,782 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:04:17,274 INFO toNotifyTaskSize = 0 - -2025-09-26 00:04:17,274 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:04:26,781 INFO [long-pulling] client count 0 - -2025-09-26 00:04:26,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:04:27,274 INFO toNotifyTaskSize = 0 - -2025-09-26 00:04:27,275 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:04:36,782 INFO [long-pulling] client count 0 - -2025-09-26 00:04:36,783 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:04:37,275 INFO toNotifyTaskSize = 0 - -2025-09-26 00:04:37,276 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:04:46,783 INFO [long-pulling] client count 0 - -2025-09-26 00:04:46,784 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:04:47,277 INFO toNotifyTaskSize = 0 - -2025-09-26 00:04:47,277 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:04:56,784 INFO [long-pulling] client count 0 - -2025-09-26 00:04:56,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:04:57,277 INFO toNotifyTaskSize = 0 - -2025-09-26 00:04:57,278 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:05:06,785 INFO [long-pulling] client count 0 - -2025-09-26 00:05:06,785 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:05:07,278 INFO toNotifyTaskSize = 0 - -2025-09-26 00:05:07,278 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:05:16,786 INFO [long-pulling] client count 0 - -2025-09-26 00:05:16,786 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:05:17,278 INFO toNotifyTaskSize = 0 - -2025-09-26 00:05:17,278 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:05:26,787 INFO [long-pulling] client count 0 - -2025-09-26 00:05:26,787 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:05:27,279 INFO toNotifyTaskSize = 0 - -2025-09-26 00:05:27,279 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:05:36,788 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:05:36,788 INFO [long-pulling] client count 0 - -2025-09-26 00:05:37,279 INFO toNotifyTaskSize = 0 - -2025-09-26 00:05:37,279 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:05:46,789 INFO [long-pulling] client count 0 - -2025-09-26 00:05:46,789 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:05:47,280 INFO toNotifyTaskSize = 0 - -2025-09-26 00:05:47,280 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:05:56,789 INFO [long-pulling] client count 0 - -2025-09-26 00:05:56,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:05:57,280 INFO toNotifyTaskSize = 0 - -2025-09-26 00:05:57,281 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:06:06,790 INFO [long-pulling] client count 0 - -2025-09-26 00:06:06,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:06:07,282 INFO toNotifyTaskSize = 0 - -2025-09-26 00:06:07,282 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:06:16,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:06:16,790 INFO [long-pulling] client count 0 - -2025-09-26 00:06:17,282 INFO toNotifyTaskSize = 0 - -2025-09-26 00:06:17,283 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:06:26,790 INFO [long-pulling] client count 0 - -2025-09-26 00:06:26,790 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:06:27,283 INFO toNotifyTaskSize = 0 - -2025-09-26 00:06:27,283 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:06:36,792 INFO [long-pulling] client count 0 - -2025-09-26 00:06:36,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:06:37,283 INFO toNotifyTaskSize = 0 - -2025-09-26 00:06:37,283 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:06:46,792 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:06:46,792 INFO [long-pulling] client count 0 - -2025-09-26 00:06:47,284 INFO toNotifyTaskSize = 0 - -2025-09-26 00:06:47,284 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:06:56,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:06:56,793 INFO [long-pulling] client count 0 - -2025-09-26 00:06:57,284 INFO toNotifyTaskSize = 0 - -2025-09-26 00:06:57,285 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:07:06,793 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:07:06,794 INFO [long-pulling] client count 0 - -2025-09-26 00:07:07,285 INFO toNotifyTaskSize = 0 - -2025-09-26 00:07:07,285 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:07:16,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:07:16,794 INFO [long-pulling] client count 0 - -2025-09-26 00:07:17,286 INFO toNotifyTaskSize = 0 - -2025-09-26 00:07:17,286 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:07:26,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:07:26,794 INFO [long-pulling] client count 0 - -2025-09-26 00:07:27,286 INFO toNotifyTaskSize = 0 - -2025-09-26 00:07:27,287 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:07:36,794 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:07:36,795 INFO [long-pulling] client count 0 - -2025-09-26 00:07:37,288 INFO toNotifyTaskSize = 0 - -2025-09-26 00:07:37,288 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:07:46,795 INFO [long-pulling] client count 0 - -2025-09-26 00:07:46,795 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:07:47,288 INFO toNotifyTaskSize = 0 - -2025-09-26 00:07:47,288 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:07:56,796 INFO [long-pulling] client count 0 - -2025-09-26 00:07:56,796 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:07:57,289 INFO toNotifyTaskSize = 0 - -2025-09-26 00:07:57,289 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:08:06,802 INFO [long-pulling] client count 0 - -2025-09-26 00:08:06,802 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:08:07,290 INFO toNotifyTaskSize = 0 - -2025-09-26 00:08:07,290 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:08:16,803 INFO [long-pulling] client count 0 - -2025-09-26 00:08:16,803 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:08:17,291 INFO toNotifyTaskSize = 0 - -2025-09-26 00:08:17,291 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:08:26,804 INFO [long-pulling] client count 0 - -2025-09-26 00:08:26,804 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:08:27,291 INFO toNotifyTaskSize = 0 - -2025-09-26 00:08:27,291 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:08:36,805 INFO [long-pulling] client count 0 - -2025-09-26 00:08:36,805 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:08:37,292 INFO toNotifyTaskSize = 0 - -2025-09-26 00:08:37,292 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:08:46,806 INFO [long-pulling] client count 0 - -2025-09-26 00:08:46,806 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:08:47,293 INFO toNotifyTaskSize = 0 - -2025-09-26 00:08:47,293 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:08:56,807 INFO [long-pulling] client count 0 - -2025-09-26 00:08:56,807 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:08:57,294 INFO toNotifyTaskSize = 0 - -2025-09-26 00:08:57,294 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:09:06,808 INFO [long-pulling] client count 0 - -2025-09-26 00:09:06,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:09:07,295 INFO toNotifyTaskSize = 0 - -2025-09-26 00:09:07,295 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:09:16,808 INFO [long-pulling] client count 0 - -2025-09-26 00:09:16,808 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:09:17,295 INFO toNotifyTaskSize = 0 - -2025-09-26 00:09:17,295 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:09:26,809 INFO [long-pulling] client count 0 - -2025-09-26 00:09:26,809 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:09:27,296 INFO toNotifyTaskSize = 0 - -2025-09-26 00:09:27,296 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:09:36,810 INFO [long-pulling] client count 0 - -2025-09-26 00:09:36,810 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:09:37,296 INFO toNotifyTaskSize = 0 - -2025-09-26 00:09:37,296 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:09:46,811 INFO [long-pulling] client count 0 - -2025-09-26 00:09:46,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:09:47,297 INFO toNotifyTaskSize = 0 - -2025-09-26 00:09:47,297 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:09:56,811 INFO [long-pulling] client count 0 - -2025-09-26 00:09:56,811 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:09:57,298 INFO toNotifyTaskSize = 0 - -2025-09-26 00:09:57,298 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:10:06,811 INFO [long-pulling] client count 0 - -2025-09-26 00:10:06,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:10:07,299 INFO toNotifyTaskSize = 0 - -2025-09-26 00:10:07,299 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:10:16,812 INFO [long-pulling] client count 0 - -2025-09-26 00:10:16,812 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:10:17,300 INFO toNotifyTaskSize = 0 - -2025-09-26 00:10:17,300 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:10:26,813 INFO [long-pulling] client count 0 - -2025-09-26 00:10:26,813 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:10:27,300 INFO toNotifyTaskSize = 0 - -2025-09-26 00:10:27,302 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:10:36,814 INFO [long-pulling] client count 0 - -2025-09-26 00:10:36,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:10:37,354 INFO toNotifyTaskSize = 0 - -2025-09-26 00:10:37,357 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:10:46,814 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:10:46,814 INFO [long-pulling] client count 0 - -2025-09-26 00:10:47,359 INFO toNotifyTaskSize = 0 - -2025-09-26 00:10:47,359 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:10:56,815 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:10:56,815 INFO [long-pulling] client count 0 - -2025-09-26 00:10:57,359 INFO toNotifyTaskSize = 0 - -2025-09-26 00:10:57,360 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:11:06,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:11:06,817 INFO [long-pulling] client count 0 - -2025-09-26 00:11:07,360 INFO toNotifyTaskSize = 0 - -2025-09-26 00:11:07,360 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:11:16,816 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:11:16,817 INFO [long-pulling] client count 0 - -2025-09-26 00:11:17,360 INFO toNotifyTaskSize = 0 - -2025-09-26 00:11:17,361 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:11:26,817 INFO [long-pulling] client count 0 - -2025-09-26 00:11:26,817 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:11:27,361 INFO toNotifyTaskSize = 0 - -2025-09-26 00:11:27,361 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:11:36,818 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:11:36,818 INFO [long-pulling] client count 0 - -2025-09-26 00:11:37,361 INFO toNotifyTaskSize = 0 - -2025-09-26 00:11:37,361 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:11:46,819 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:11:46,820 INFO [long-pulling] client count 0 - -2025-09-26 00:11:47,362 INFO toNotifyTaskSize = 0 - -2025-09-26 00:11:47,362 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:11:56,820 INFO [long-pulling] client count 0 - -2025-09-26 00:11:56,820 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:11:57,363 INFO toNotifyTaskSize = 0 - -2025-09-26 00:11:57,363 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:12:06,822 INFO [long-pulling] client count 0 - -2025-09-26 00:12:06,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:12:07,363 INFO toNotifyTaskSize = 0 - -2025-09-26 00:12:07,364 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:12:16,822 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:12:16,824 INFO [long-pulling] client count 0 - -2025-09-26 00:12:17,364 INFO toNotifyTaskSize = 0 - -2025-09-26 00:12:17,364 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:12:26,823 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:12:26,824 INFO [long-pulling] client count 0 - -2025-09-26 00:12:27,365 INFO toNotifyTaskSize = 0 - -2025-09-26 00:12:27,368 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:12:36,825 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:12:36,825 INFO [long-pulling] client count 0 - -2025-09-26 00:12:37,368 INFO toNotifyTaskSize = 0 - -2025-09-26 00:12:37,369 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:12:46,827 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:12:46,827 INFO [long-pulling] client count 0 - -2025-09-26 00:12:47,369 INFO toNotifyTaskSize = 0 - -2025-09-26 00:12:47,369 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:12:56,830 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:12:56,830 INFO [long-pulling] client count 0 - -2025-09-26 00:12:57,370 INFO toNotifyTaskSize = 0 - -2025-09-26 00:12:57,370 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:13:06,831 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:13:06,831 INFO [long-pulling] client count 0 - -2025-09-26 00:13:07,371 INFO toNotifyTaskSize = 0 - -2025-09-26 00:13:07,371 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:13:16,833 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:13:16,833 INFO [long-pulling] client count 0 - -2025-09-26 00:13:17,372 INFO toNotifyTaskSize = 0 - -2025-09-26 00:13:17,372 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:13:26,836 INFO [long-pulling] client count 0 - -2025-09-26 00:13:26,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:13:27,373 INFO toNotifyTaskSize = 0 - -2025-09-26 00:13:27,373 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:13:36,836 INFO [long-pulling] client count 0 - -2025-09-26 00:13:36,836 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:13:37,373 INFO toNotifyTaskSize = 0 - -2025-09-26 00:13:37,373 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:13:46,837 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:13:46,837 INFO [long-pulling] client count 0 - -2025-09-26 00:13:47,374 INFO toNotifyTaskSize = 0 - -2025-09-26 00:13:47,374 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:13:56,838 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:13:56,838 INFO [long-pulling] client count 0 - -2025-09-26 00:13:57,375 INFO toNotifyTaskSize = 0 - -2025-09-26 00:13:57,375 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:14:06,839 INFO [long-pulling] client count 0 - -2025-09-26 00:14:06,839 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:14:07,375 INFO toNotifyTaskSize = 0 - -2025-09-26 00:14:07,375 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:14:16,840 INFO [long-pulling] client count 0 - -2025-09-26 00:14:16,840 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:14:17,376 INFO toNotifyTaskSize = 0 - -2025-09-26 00:14:17,376 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:14:26,841 INFO [long-pulling] client count 0 - -2025-09-26 00:14:26,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:14:27,376 INFO toNotifyTaskSize = 0 - -2025-09-26 00:14:27,376 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:14:36,841 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:14:36,841 INFO [long-pulling] client count 0 - -2025-09-26 00:14:37,377 INFO toNotifyTaskSize = 0 - -2025-09-26 00:14:37,377 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:14:46,842 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:14:46,842 INFO [long-pulling] client count 0 - -2025-09-26 00:14:47,377 INFO toNotifyTaskSize = 0 - -2025-09-26 00:14:47,378 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:14:56,848 INFO [long-pulling] client count 0 - -2025-09-26 00:14:56,848 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:14:57,378 INFO toNotifyTaskSize = 0 - -2025-09-26 00:14:57,378 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:15:06,853 INFO [long-pulling] client count 0 - -2025-09-26 00:15:06,853 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:15:07,378 INFO toNotifyTaskSize = 0 - -2025-09-26 00:15:07,378 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:15:16,853 INFO [long-pulling] client count 0 - -2025-09-26 00:15:16,855 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:15:17,380 INFO toNotifyTaskSize = 0 - -2025-09-26 00:15:17,380 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:15:26,855 INFO [long-pulling] client count 0 - -2025-09-26 00:15:26,856 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:15:27,381 INFO toNotifyTaskSize = 0 - -2025-09-26 00:15:27,381 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:15:36,856 INFO [long-pulling] client count 0 - -2025-09-26 00:15:36,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:15:37,382 INFO toNotifyTaskSize = 0 - -2025-09-26 00:15:37,382 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:15:46,857 INFO [long-pulling] client count 0 - -2025-09-26 00:15:46,857 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:15:47,382 INFO toNotifyTaskSize = 0 - -2025-09-26 00:15:47,383 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:15:56,858 INFO [long-pulling] client count 0 - -2025-09-26 00:15:56,858 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:15:57,384 INFO toNotifyTaskSize = 0 - -2025-09-26 00:15:57,384 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:16:06,859 INFO [long-pulling] client count 0 - -2025-09-26 00:16:06,859 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:16:07,384 INFO toNotifyTaskSize = 0 - -2025-09-26 00:16:07,385 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:16:16,860 INFO [long-pulling] client count 0 - -2025-09-26 00:16:16,860 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:16:17,385 INFO toNotifyTaskSize = 0 - -2025-09-26 00:16:17,386 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:16:26,861 INFO [long-pulling] client count 0 - -2025-09-26 00:16:26,861 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:16:27,386 INFO toNotifyTaskSize = 0 - -2025-09-26 00:16:27,386 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:16:36,862 INFO [long-pulling] client count 0 - -2025-09-26 00:16:36,863 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:16:37,387 INFO toNotifyTaskSize = 0 - -2025-09-26 00:16:37,387 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:16:46,864 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:16:46,864 INFO [long-pulling] client count 0 - -2025-09-26 00:16:47,388 INFO toNotifyTaskSize = 0 - -2025-09-26 00:16:47,388 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:16:56,865 INFO [long-pulling] client count 0 - -2025-09-26 00:16:56,865 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:16:57,388 INFO toNotifyTaskSize = 0 - -2025-09-26 00:16:57,389 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:17:06,866 INFO [long-pulling] client count 0 - -2025-09-26 00:17:06,866 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:17:07,390 INFO toNotifyTaskSize = 0 - -2025-09-26 00:17:07,390 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:17:16,867 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:17:16,867 INFO [long-pulling] client count 0 - -2025-09-26 00:17:17,391 INFO toNotifyTaskSize = 0 - -2025-09-26 00:17:17,391 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:17:26,868 INFO [long-pulling] client count 0 - -2025-09-26 00:17:26,869 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:17:27,393 INFO toNotifyTaskSize = 0 - -2025-09-26 00:17:27,393 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:17:36,869 INFO [long-pulling] client count 0 - -2025-09-26 00:17:36,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:17:37,393 INFO toNotifyTaskSize = 0 - -2025-09-26 00:17:37,393 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:17:46,870 INFO [long-pulling] client count 0 - -2025-09-26 00:17:46,870 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:17:47,394 INFO toNotifyTaskSize = 0 - -2025-09-26 00:17:47,394 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:17:56,871 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:17:56,871 INFO [long-pulling] client count 0 - -2025-09-26 00:17:57,395 INFO toNotifyTaskSize = 0 - -2025-09-26 00:17:57,395 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:18:06,872 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:18:06,873 INFO [long-pulling] client count 0 - -2025-09-26 00:18:07,395 INFO toNotifyTaskSize = 0 - -2025-09-26 00:18:07,395 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:18:16,874 INFO [long-pulling] client count 0 - -2025-09-26 00:18:16,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:18:17,396 INFO toNotifyTaskSize = 0 - -2025-09-26 00:18:17,396 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:18:26,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:18:26,875 INFO [long-pulling] client count 0 - -2025-09-26 00:18:27,397 INFO toNotifyTaskSize = 0 - -2025-09-26 00:18:27,397 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:18:36,875 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:18:36,876 INFO [long-pulling] client count 0 - -2025-09-26 00:18:37,398 INFO toNotifyTaskSize = 0 - -2025-09-26 00:18:37,398 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:18:46,876 INFO [long-pulling] client count 0 - -2025-09-26 00:18:46,876 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:18:47,398 INFO toNotifyTaskSize = 0 - -2025-09-26 00:18:47,398 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:18:56,877 INFO [long-pulling] client count 0 - -2025-09-26 00:18:56,878 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:18:57,399 INFO toNotifyTaskSize = 0 - -2025-09-26 00:18:57,399 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:19:06,879 INFO [long-pulling] client count 0 - -2025-09-26 00:19:06,879 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:19:07,400 INFO toNotifyTaskSize = 0 - -2025-09-26 00:19:07,401 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:19:16,880 INFO [long-pulling] client count 0 - -2025-09-26 00:19:16,880 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:19:17,401 INFO toNotifyTaskSize = 0 - -2025-09-26 00:19:17,402 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:19:26,881 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:19:26,882 INFO [long-pulling] client count 0 - -2025-09-26 00:19:27,402 INFO toNotifyTaskSize = 0 - -2025-09-26 00:19:27,402 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:19:36,882 INFO [long-pulling] client count 0 - -2025-09-26 00:19:36,883 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:19:37,403 INFO toNotifyTaskSize = 0 - -2025-09-26 00:19:37,403 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:19:46,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:19:46,884 INFO [long-pulling] client count 0 - -2025-09-26 00:19:47,405 INFO toNotifyTaskSize = 0 - -2025-09-26 00:19:47,405 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:19:56,884 INFO [long-pulling] client count 0 - -2025-09-26 00:19:56,884 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:19:57,405 INFO toNotifyTaskSize = 0 - -2025-09-26 00:19:57,406 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:20:06,885 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:20:06,885 INFO [long-pulling] client count 0 - -2025-09-26 00:20:07,407 INFO toNotifyTaskSize = 0 - -2025-09-26 00:20:07,407 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:20:16,886 INFO [long-pulling] client count 0 - -2025-09-26 00:20:16,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:20:17,408 INFO toNotifyTaskSize = 0 - -2025-09-26 00:20:17,408 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:20:26,886 INFO [long-pulling] client count 0 - -2025-09-26 00:20:26,886 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:20:27,408 INFO toNotifyTaskSize = 0 - -2025-09-26 00:20:27,408 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:20:36,887 INFO [long-pulling] client count 0 - -2025-09-26 00:20:36,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:20:37,410 INFO toNotifyTaskSize = 0 - -2025-09-26 00:20:37,410 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:20:46,888 INFO [long-pulling] client count 0 - -2025-09-26 00:20:46,888 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:20:47,410 INFO toNotifyTaskSize = 0 - -2025-09-26 00:20:47,410 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:20:56,889 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:20:56,890 INFO [long-pulling] client count 0 - -2025-09-26 00:20:57,411 INFO toNotifyTaskSize = 0 - -2025-09-26 00:20:57,411 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:21:06,890 INFO [long-pulling] client count 0 - -2025-09-26 00:21:06,890 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:21:07,412 INFO toNotifyTaskSize = 0 - -2025-09-26 00:21:07,414 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:21:16,892 INFO [long-pulling] client count 0 - -2025-09-26 00:21:16,892 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:21:17,415 INFO toNotifyTaskSize = 0 - -2025-09-26 00:21:17,415 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:21:26,893 INFO [long-pulling] client count 0 - -2025-09-26 00:21:26,893 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:21:27,415 INFO toNotifyTaskSize = 0 - -2025-09-26 00:21:27,415 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:21:36,894 INFO [long-pulling] client count 0 - -2025-09-26 00:21:36,894 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:21:37,417 INFO toNotifyTaskSize = 0 - -2025-09-26 00:21:37,417 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:21:46,894 INFO [long-pulling] client count 0 - -2025-09-26 00:21:46,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:21:47,418 INFO toNotifyTaskSize = 0 - -2025-09-26 00:21:47,418 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:21:56,895 INFO [long-pulling] client count 0 - -2025-09-26 00:21:56,895 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:21:57,419 INFO toNotifyTaskSize = 0 - -2025-09-26 00:21:57,419 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:22:06,896 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:22:06,896 INFO [long-pulling] client count 0 - -2025-09-26 00:22:07,419 INFO toNotifyTaskSize = 0 - -2025-09-26 00:22:07,421 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:22:16,899 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:22:16,899 INFO [long-pulling] client count 0 - -2025-09-26 00:22:17,422 INFO toNotifyTaskSize = 0 - -2025-09-26 00:22:17,422 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:22:26,901 INFO [long-pulling] client count 0 - -2025-09-26 00:22:26,900 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:22:27,423 INFO toNotifyTaskSize = 0 - -2025-09-26 00:22:27,423 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:22:36,902 INFO [long-pulling] client count 0 - -2025-09-26 00:22:36,902 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:22:37,423 INFO toNotifyTaskSize = 0 - -2025-09-26 00:22:37,424 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:22:46,903 INFO [long-pulling] client count 0 - -2025-09-26 00:22:46,903 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:22:47,425 INFO toNotifyTaskSize = 0 - -2025-09-26 00:22:47,425 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:22:56,904 INFO [long-pulling] client count 0 - -2025-09-26 00:22:56,904 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:22:57,427 INFO toNotifyTaskSize = 0 - -2025-09-26 00:22:57,427 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:23:06,905 INFO [long-pulling] client count 0 - -2025-09-26 00:23:06,905 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:23:07,427 INFO toNotifyTaskSize = 0 - -2025-09-26 00:23:07,427 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:23:16,906 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:23:16,906 INFO [long-pulling] client count 0 - -2025-09-26 00:23:17,427 INFO toNotifyTaskSize = 0 - -2025-09-26 00:23:17,428 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:23:26,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:23:26,907 INFO [long-pulling] client count 0 - -2025-09-26 00:23:27,428 INFO toNotifyTaskSize = 0 - -2025-09-26 00:23:27,428 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:23:36,907 INFO [long-pulling] client count 0 - -2025-09-26 00:23:36,907 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:23:37,429 INFO toNotifyTaskSize = 0 - -2025-09-26 00:23:37,429 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:23:46,908 INFO [long-pulling] client count 0 - -2025-09-26 00:23:46,908 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:23:47,429 INFO toNotifyTaskSize = 0 - -2025-09-26 00:23:47,429 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:23:56,909 INFO [long-pulling] client count 0 - -2025-09-26 00:23:56,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:23:57,432 INFO toNotifyTaskSize = 0 - -2025-09-26 00:23:57,432 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:24:06,909 INFO [long-pulling] client count 0 - -2025-09-26 00:24:06,909 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:24:07,433 INFO toNotifyTaskSize = 0 - -2025-09-26 00:24:07,433 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:24:16,911 INFO [long-pulling] client count 0 - -2025-09-26 00:24:16,911 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:24:17,434 INFO toNotifyTaskSize = 0 - -2025-09-26 00:24:17,434 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:24:26,912 INFO [long-pulling] client count 0 - -2025-09-26 00:24:26,912 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:24:27,434 INFO toNotifyTaskSize = 0 - -2025-09-26 00:24:27,434 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:24:36,912 INFO [long-pulling] client count 0 - -2025-09-26 00:24:36,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:24:37,435 INFO toNotifyTaskSize = 0 - -2025-09-26 00:24:37,435 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:24:46,913 INFO [long-pulling] client count 0 - -2025-09-26 00:24:46,913 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:24:47,435 INFO toNotifyTaskSize = 0 - -2025-09-26 00:24:47,436 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:24:56,914 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:24:56,914 INFO [long-pulling] client count 0 - -2025-09-26 00:24:57,437 INFO toNotifyTaskSize = 0 - -2025-09-26 00:24:57,437 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:25:06,915 INFO [long-pulling] client count 0 - -2025-09-26 00:25:06,915 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:25:07,438 INFO toNotifyTaskSize = 0 - -2025-09-26 00:25:07,438 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:25:16,916 INFO [long-pulling] client count 0 - -2025-09-26 00:25:16,916 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:25:17,438 INFO toNotifyTaskSize = 0 - -2025-09-26 00:25:17,438 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:25:26,916 INFO [long-pulling] client count 0 - -2025-09-26 00:25:26,917 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:25:27,439 INFO toNotifyTaskSize = 0 - -2025-09-26 00:25:27,439 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:25:36,916 INFO [long-pulling] client count 0 - -2025-09-26 00:25:36,918 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:25:37,440 INFO toNotifyTaskSize = 0 - -2025-09-26 00:25:37,440 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:25:46,917 INFO [long-pulling] client count 0 - -2025-09-26 00:25:46,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:25:47,440 INFO toNotifyTaskSize = 0 - -2025-09-26 00:25:47,441 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:25:56,918 INFO [long-pulling] client count 0 - -2025-09-26 00:25:56,919 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:25:57,441 INFO toNotifyTaskSize = 0 - -2025-09-26 00:25:57,441 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:26:06,919 INFO [long-pulling] client count 0 - -2025-09-26 00:26:06,920 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:26:07,441 INFO toNotifyTaskSize = 0 - -2025-09-26 00:26:07,441 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:26:16,920 INFO [long-pulling] client count 0 - -2025-09-26 00:26:16,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:26:17,442 INFO toNotifyTaskSize = 0 - -2025-09-26 00:26:17,442 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:26:26,921 INFO [long-pulling] client count 0 - -2025-09-26 00:26:26,921 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:26:27,443 INFO toNotifyTaskSize = 0 - -2025-09-26 00:26:27,443 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:26:36,922 INFO [long-pulling] client count 0 - -2025-09-26 00:26:36,923 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:26:37,444 INFO toNotifyTaskSize = 0 - -2025-09-26 00:26:37,444 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:26:46,924 INFO [long-pulling] client count 0 - -2025-09-26 00:26:46,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:26:47,444 INFO toNotifyTaskSize = 0 - -2025-09-26 00:26:47,444 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:26:56,924 INFO [long-pulling] client count 0 - -2025-09-26 00:26:56,924 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:26:57,445 INFO toNotifyTaskSize = 0 - -2025-09-26 00:26:57,445 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:27:06,926 INFO [long-pulling] client count 0 - -2025-09-26 00:27:06,926 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:27:07,447 INFO toNotifyTaskSize = 0 - -2025-09-26 00:27:07,447 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:27:16,928 INFO [long-pulling] client count 0 - -2025-09-26 00:27:16,928 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:27:17,448 INFO toNotifyTaskSize = 0 - -2025-09-26 00:27:17,448 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:27:26,929 INFO [long-pulling] client count 0 - -2025-09-26 00:27:26,929 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:27:27,449 INFO toNotifyTaskSize = 0 - -2025-09-26 00:27:27,449 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:27:36,931 INFO [long-pulling] client count 0 - -2025-09-26 00:27:36,931 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:27:37,449 INFO toNotifyTaskSize = 0 - -2025-09-26 00:27:37,450 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:27:46,932 INFO [long-pulling] client count 0 - -2025-09-26 00:27:46,932 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:27:47,450 INFO toNotifyTaskSize = 0 - -2025-09-26 00:27:47,451 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:27:56,933 INFO [long-pulling] client count 0 - -2025-09-26 00:27:56,933 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:27:57,451 INFO toNotifyTaskSize = 0 - -2025-09-26 00:27:57,451 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:28:06,934 INFO [long-pulling] client count 0 - -2025-09-26 00:28:06,934 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:28:07,452 INFO toNotifyTaskSize = 0 - -2025-09-26 00:28:07,452 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:28:16,936 INFO [long-pulling] client count 0 - -2025-09-26 00:28:16,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:28:17,452 INFO toNotifyTaskSize = 0 - -2025-09-26 00:28:17,452 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:28:26,936 INFO [long-pulling] client count 0 - -2025-09-26 00:28:26,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:28:27,453 INFO toNotifyTaskSize = 0 - -2025-09-26 00:28:27,453 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:28:36,937 INFO [long-pulling] client count 0 - -2025-09-26 00:28:36,937 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:28:37,453 INFO toNotifyTaskSize = 0 - -2025-09-26 00:28:37,454 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:28:46,937 INFO [long-pulling] client count 0 - -2025-09-26 00:28:46,938 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:28:47,454 INFO toNotifyTaskSize = 0 - -2025-09-26 00:28:47,455 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:28:56,938 INFO [long-pulling] client count 0 - -2025-09-26 00:28:56,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:28:57,455 INFO toNotifyTaskSize = 0 - -2025-09-26 00:28:57,455 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:29:06,940 INFO [long-pulling] client count 0 - -2025-09-26 00:29:06,940 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:29:07,456 INFO toNotifyTaskSize = 0 - -2025-09-26 00:29:07,456 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:29:16,941 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:29:16,941 INFO [long-pulling] client count 0 - -2025-09-26 00:29:17,457 INFO toNotifyTaskSize = 0 - -2025-09-26 00:29:17,457 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:29:26,942 INFO [long-pulling] client count 0 - -2025-09-26 00:29:26,942 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:29:27,458 INFO toNotifyTaskSize = 0 - -2025-09-26 00:29:27,458 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:29:36,943 INFO [long-pulling] client count 0 - -2025-09-26 00:29:36,943 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:29:37,459 INFO toNotifyTaskSize = 0 - -2025-09-26 00:29:37,459 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:29:46,944 INFO [long-pulling] client count 0 - -2025-09-26 00:29:46,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:29:47,459 INFO toNotifyTaskSize = 0 - -2025-09-26 00:29:47,460 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:29:56,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:29:56,944 INFO [long-pulling] client count 0 - -2025-09-26 00:29:57,460 INFO toNotifyTaskSize = 0 - -2025-09-26 00:29:57,460 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:30:06,944 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:30:06,944 INFO [long-pulling] client count 0 - -2025-09-26 00:30:07,461 INFO toNotifyTaskSize = 0 - -2025-09-26 00:30:07,461 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:30:16,946 INFO [long-pulling] client count 0 - -2025-09-26 00:30:16,946 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:30:17,461 INFO toNotifyTaskSize = 0 - -2025-09-26 00:30:17,461 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:30:26,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:30:26,947 INFO [long-pulling] client count 0 - -2025-09-26 00:30:27,462 INFO toNotifyTaskSize = 0 - -2025-09-26 00:30:27,462 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:30:36,947 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:30:36,947 INFO [long-pulling] client count 0 - -2025-09-26 00:30:37,462 INFO toNotifyTaskSize = 0 - -2025-09-26 00:30:37,462 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:30:46,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:30:46,948 INFO [long-pulling] client count 0 - -2025-09-26 00:30:47,462 INFO toNotifyTaskSize = 0 - -2025-09-26 00:30:47,463 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:30:56,948 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:30:56,949 INFO [long-pulling] client count 0 - -2025-09-26 00:30:57,464 INFO toNotifyTaskSize = 0 - -2025-09-26 00:30:57,464 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:31:06,950 INFO [long-pulling] client count 0 - -2025-09-26 00:31:06,950 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:31:07,465 INFO toNotifyTaskSize = 0 - -2025-09-26 00:31:07,465 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:31:16,952 INFO [long-pulling] client count 0 - -2025-09-26 00:31:16,953 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:31:17,465 INFO toNotifyTaskSize = 0 - -2025-09-26 00:31:17,465 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:31:26,954 INFO [long-pulling] client count 0 - -2025-09-26 00:31:26,954 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:31:27,465 INFO toNotifyTaskSize = 0 - -2025-09-26 00:31:27,466 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:31:36,956 INFO [long-pulling] client count 0 - -2025-09-26 00:31:36,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:31:37,492 INFO toNotifyTaskSize = 0 - -2025-09-26 00:31:37,492 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:31:46,956 INFO [long-pulling] client count 0 - -2025-09-26 00:31:46,956 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:31:47,493 INFO toNotifyTaskSize = 0 - -2025-09-26 00:31:47,493 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:31:56,957 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:31:56,957 INFO [long-pulling] client count 0 - -2025-09-26 00:31:57,494 INFO toNotifyTaskSize = 0 - -2025-09-26 00:31:57,494 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:32:06,958 INFO [long-pulling] client count 0 - -2025-09-26 00:32:06,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:32:07,495 INFO toNotifyTaskSize = 0 - -2025-09-26 00:32:07,495 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:32:16,958 INFO [long-pulling] client count 0 - -2025-09-26 00:32:16,958 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:32:17,496 INFO toNotifyTaskSize = 0 - -2025-09-26 00:32:17,496 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:32:26,959 INFO [long-pulling] client count 0 - -2025-09-26 00:32:26,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:32:27,497 INFO toNotifyTaskSize = 0 - -2025-09-26 00:32:27,497 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:32:36,959 INFO [long-pulling] client count 0 - -2025-09-26 00:32:36,959 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:32:37,498 INFO toNotifyTaskSize = 0 - -2025-09-26 00:32:37,498 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:32:46,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:32:46,960 INFO [long-pulling] client count 0 - -2025-09-26 00:32:47,499 INFO toNotifyTaskSize = 0 - -2025-09-26 00:32:47,499 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:32:56,960 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:32:56,960 INFO [long-pulling] client count 0 - -2025-09-26 00:32:57,501 INFO toNotifyTaskSize = 0 - -2025-09-26 00:32:57,501 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:33:06,960 INFO [long-pulling] client count 0 - -2025-09-26 00:33:06,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:33:07,502 INFO toNotifyTaskSize = 0 - -2025-09-26 00:33:07,502 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:33:16,961 INFO [long-pulling] client count 0 - -2025-09-26 00:33:16,961 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:33:17,503 INFO toNotifyTaskSize = 0 - -2025-09-26 00:33:17,503 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:33:26,963 INFO [long-pulling] client count 0 - -2025-09-26 00:33:26,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:33:27,503 INFO toNotifyTaskSize = 0 - -2025-09-26 00:33:27,504 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:33:36,964 INFO [long-pulling] client count 0 - -2025-09-26 00:33:36,964 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:33:37,504 INFO toNotifyTaskSize = 0 - -2025-09-26 00:33:37,505 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:33:46,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:33:46,965 INFO [long-pulling] client count 0 - -2025-09-26 00:33:47,505 INFO toNotifyTaskSize = 0 - -2025-09-26 00:33:47,505 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:33:56,965 INFO [long-pulling] client count 0 - -2025-09-26 00:33:56,965 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:33:57,505 INFO toNotifyTaskSize = 0 - -2025-09-26 00:33:57,506 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:34:06,966 INFO [long-pulling] client count 0 - -2025-09-26 00:34:06,966 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:34:07,506 INFO toNotifyTaskSize = 0 - -2025-09-26 00:34:07,506 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:34:16,968 INFO [long-pulling] client count 0 - -2025-09-26 00:34:16,968 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:34:17,506 INFO toNotifyTaskSize = 0 - -2025-09-26 00:34:17,506 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:34:26,969 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:34:26,969 INFO [long-pulling] client count 0 - -2025-09-26 00:34:27,507 INFO toNotifyTaskSize = 0 - -2025-09-26 00:34:27,508 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:34:36,970 INFO [long-pulling] client count 0 - -2025-09-26 00:34:36,970 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:34:37,508 INFO toNotifyTaskSize = 0 - -2025-09-26 00:34:37,508 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:34:46,971 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:34:46,971 INFO [long-pulling] client count 0 - -2025-09-26 00:34:47,509 INFO toNotifyTaskSize = 0 - -2025-09-26 00:34:47,509 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:34:56,972 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:34:56,972 INFO [long-pulling] client count 0 - -2025-09-26 00:34:57,510 INFO toNotifyTaskSize = 0 - -2025-09-26 00:34:57,511 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:35:06,973 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:35:06,974 INFO [long-pulling] client count 0 - -2025-09-26 00:35:07,512 INFO toNotifyTaskSize = 0 - -2025-09-26 00:35:07,512 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:35:16,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:35:16,974 INFO [long-pulling] client count 0 - -2025-09-26 00:35:17,513 INFO toNotifyTaskSize = 0 - -2025-09-26 00:35:17,513 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:35:26,974 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:35:26,975 INFO [long-pulling] client count 0 - -2025-09-26 00:35:27,514 INFO toNotifyTaskSize = 0 - -2025-09-26 00:35:27,515 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:35:36,976 INFO [long-pulling] client count 0 - -2025-09-26 00:35:36,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:35:37,515 INFO toNotifyTaskSize = 0 - -2025-09-26 00:35:37,515 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:35:46,976 INFO [long-pulling] client count 0 - -2025-09-26 00:35:46,976 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:35:47,515 INFO toNotifyTaskSize = 0 - -2025-09-26 00:35:47,516 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:35:56,977 INFO [long-pulling] client count 0 - -2025-09-26 00:35:56,977 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:35:57,516 INFO toNotifyTaskSize = 0 - -2025-09-26 00:35:57,516 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:36:06,978 INFO [long-pulling] client count 0 - -2025-09-26 00:36:06,978 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:36:07,517 INFO toNotifyTaskSize = 0 - -2025-09-26 00:36:07,517 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:36:16,979 INFO [long-pulling] client count 0 - -2025-09-26 00:36:16,979 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:36:17,517 INFO toNotifyTaskSize = 0 - -2025-09-26 00:36:17,517 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:36:26,980 INFO [long-pulling] client count 0 - -2025-09-26 00:36:26,980 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:36:27,518 INFO toNotifyTaskSize = 0 - -2025-09-26 00:36:27,518 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:36:36,981 INFO [long-pulling] client count 0 - -2025-09-26 00:36:36,981 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:36:37,519 INFO toNotifyTaskSize = 0 - -2025-09-26 00:36:37,519 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:36:46,982 INFO [long-pulling] client count 0 - -2025-09-26 00:36:46,982 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:36:47,519 INFO toNotifyTaskSize = 0 - -2025-09-26 00:36:47,520 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:36:56,983 INFO [long-pulling] client count 0 - -2025-09-26 00:36:56,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:36:57,520 INFO toNotifyTaskSize = 0 - -2025-09-26 00:36:57,520 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:37:06,983 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:37:06,983 INFO [long-pulling] client count 0 - -2025-09-26 00:37:07,521 INFO toNotifyTaskSize = 0 - -2025-09-26 00:37:07,521 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:37:16,984 INFO [long-pulling] client count 0 - -2025-09-26 00:37:16,984 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:37:17,522 INFO toNotifyTaskSize = 0 - -2025-09-26 00:37:17,522 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:37:26,984 INFO [long-pulling] client count 0 - -2025-09-26 00:37:26,985 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:37:27,522 INFO toNotifyTaskSize = 0 - -2025-09-26 00:37:27,523 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:37:36,986 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:37:36,986 INFO [long-pulling] client count 0 - -2025-09-26 00:37:37,523 INFO toNotifyTaskSize = 0 - -2025-09-26 00:37:37,524 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:37:46,987 INFO [long-pulling] client count 0 - -2025-09-26 00:37:46,987 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:37:47,524 INFO toNotifyTaskSize = 0 - -2025-09-26 00:37:47,524 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:37:56,989 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:37:56,989 INFO [long-pulling] client count 0 - -2025-09-26 00:37:57,525 INFO toNotifyTaskSize = 0 - -2025-09-26 00:37:57,525 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:38:06,990 INFO [long-pulling] client count 0 - -2025-09-26 00:38:06,990 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:38:07,525 INFO toNotifyTaskSize = 0 - -2025-09-26 00:38:07,525 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:38:16,991 INFO [long-pulling] client count 0 - -2025-09-26 00:38:16,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:38:17,526 INFO toNotifyTaskSize = 0 - -2025-09-26 00:38:17,526 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:38:26,992 INFO [long-pulling] client count 0 - -2025-09-26 00:38:26,992 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:38:27,526 INFO toNotifyTaskSize = 0 - -2025-09-26 00:38:27,526 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:38:36,993 INFO [long-pulling] client count 0 - -2025-09-26 00:38:36,993 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:38:37,527 INFO toNotifyTaskSize = 0 - -2025-09-26 00:38:37,527 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:38:46,995 INFO [long-pulling] client count 0 - -2025-09-26 00:38:46,995 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:38:47,527 INFO toNotifyTaskSize = 0 - -2025-09-26 00:38:47,527 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:38:57,020 INFO [long-pulling] client count 0 - -2025-09-26 00:38:57,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:38:57,528 INFO toNotifyTaskSize = 0 - -2025-09-26 00:38:57,528 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:39:07,031 INFO [long-pulling] client count 0 - -2025-09-26 00:39:07,041 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:39:07,528 INFO toNotifyTaskSize = 0 - -2025-09-26 00:39:07,528 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:39:17,032 INFO [long-pulling] client count 0 - -2025-09-26 00:39:17,042 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:39:17,529 INFO toNotifyTaskSize = 0 - -2025-09-26 00:39:17,529 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:39:27,032 INFO [long-pulling] client count 0 - -2025-09-26 00:39:27,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:39:27,529 INFO toNotifyTaskSize = 0 - -2025-09-26 00:39:27,529 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:39:37,033 INFO [long-pulling] client count 0 - -2025-09-26 00:39:37,043 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:39:37,529 INFO toNotifyTaskSize = 0 - -2025-09-26 00:39:37,529 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:39:47,033 INFO [long-pulling] client count 0 - -2025-09-26 00:39:47,044 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:39:47,531 INFO toNotifyTaskSize = 0 - -2025-09-26 00:39:47,531 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:39:57,034 INFO [long-pulling] client count 0 - -2025-09-26 00:39:57,045 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:39:57,531 INFO toNotifyTaskSize = 0 - -2025-09-26 00:39:57,531 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:40:07,035 INFO [long-pulling] client count 0 - -2025-09-26 00:40:07,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:40:07,531 INFO toNotifyTaskSize = 0 - -2025-09-26 00:40:07,532 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:40:17,036 INFO [long-pulling] client count 0 - -2025-09-26 00:40:17,055 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:40:17,532 INFO toNotifyTaskSize = 0 - -2025-09-26 00:40:17,532 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:40:27,040 INFO [long-pulling] client count 0 - -2025-09-26 00:40:27,057 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:40:27,532 INFO toNotifyTaskSize = 0 - -2025-09-26 00:40:27,532 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:40:37,040 INFO [long-pulling] client count 0 - -2025-09-26 00:40:37,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:40:37,533 INFO toNotifyTaskSize = 0 - -2025-09-26 00:40:37,533 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:40:47,040 INFO [long-pulling] client count 0 - -2025-09-26 00:40:47,058 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:40:47,533 INFO toNotifyTaskSize = 0 - -2025-09-26 00:40:47,533 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:40:57,041 INFO [long-pulling] client count 0 - -2025-09-26 00:40:57,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:40:57,534 INFO toNotifyTaskSize = 0 - -2025-09-26 00:40:57,534 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:41:07,041 INFO [long-pulling] client count 0 - -2025-09-26 00:41:07,059 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:41:07,535 INFO toNotifyTaskSize = 0 - -2025-09-26 00:41:07,535 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:41:17,042 INFO [long-pulling] client count 0 - -2025-09-26 00:41:17,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:41:17,536 INFO toNotifyTaskSize = 0 - -2025-09-26 00:41:17,536 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:41:27,043 INFO [long-pulling] client count 0 - -2025-09-26 00:41:27,061 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:41:27,537 INFO toNotifyTaskSize = 0 - -2025-09-26 00:41:27,537 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:41:37,043 INFO [long-pulling] client count 0 - -2025-09-26 00:41:37,062 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:41:37,538 INFO toNotifyTaskSize = 0 - -2025-09-26 00:41:37,538 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:41:47,044 INFO [long-pulling] client count 0 - -2025-09-26 00:41:47,063 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:41:47,538 INFO toNotifyTaskSize = 0 - -2025-09-26 00:41:47,539 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:41:57,045 INFO [long-pulling] client count 0 - -2025-09-26 00:41:57,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:41:57,539 INFO toNotifyTaskSize = 0 - -2025-09-26 00:41:57,539 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:42:07,046 INFO [long-pulling] client count 0 - -2025-09-26 00:42:07,064 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:42:07,539 INFO toNotifyTaskSize = 0 - -2025-09-26 00:42:07,540 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:42:17,048 INFO [long-pulling] client count 0 - -2025-09-26 00:42:17,068 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:42:17,540 INFO toNotifyTaskSize = 0 - -2025-09-26 00:42:17,540 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:42:27,049 INFO [long-pulling] client count 0 - -2025-09-26 00:42:27,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:42:27,541 INFO toNotifyTaskSize = 0 - -2025-09-26 00:42:27,541 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:42:37,050 INFO [long-pulling] client count 0 - -2025-09-26 00:42:37,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:42:37,541 INFO toNotifyTaskSize = 0 - -2025-09-26 00:42:37,541 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:42:47,051 INFO [long-pulling] client count 0 - -2025-09-26 00:42:47,069 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:42:47,542 INFO toNotifyTaskSize = 0 - -2025-09-26 00:42:47,542 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:42:57,052 INFO [long-pulling] client count 0 - -2025-09-26 00:42:57,070 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:42:57,542 INFO toNotifyTaskSize = 0 - -2025-09-26 00:42:57,543 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:43:07,053 INFO [long-pulling] client count 0 - -2025-09-26 00:43:07,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:43:07,543 INFO toNotifyTaskSize = 0 - -2025-09-26 00:43:07,543 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:43:17,054 INFO [long-pulling] client count 0 - -2025-09-26 00:43:17,071 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:43:17,543 INFO toNotifyTaskSize = 0 - -2025-09-26 00:43:17,543 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:43:27,055 INFO [long-pulling] client count 0 - -2025-09-26 00:43:27,072 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:43:27,543 INFO toNotifyTaskSize = 0 - -2025-09-26 00:43:27,544 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:43:37,055 INFO [long-pulling] client count 0 - -2025-09-26 00:43:37,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:43:37,544 INFO toNotifyTaskSize = 0 - -2025-09-26 00:43:37,544 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:43:47,056 INFO [long-pulling] client count 0 - -2025-09-26 00:43:47,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:43:47,545 INFO toNotifyTaskSize = 0 - -2025-09-26 00:43:47,545 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:43:57,057 INFO [long-pulling] client count 0 - -2025-09-26 00:43:57,073 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:43:57,545 INFO toNotifyTaskSize = 0 - -2025-09-26 00:43:57,546 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:44:07,057 INFO [long-pulling] client count 0 - -2025-09-26 00:44:07,074 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:44:07,546 INFO toNotifyTaskSize = 0 - -2025-09-26 00:44:07,546 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:44:17,058 INFO [long-pulling] client count 0 - -2025-09-26 00:44:17,075 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:44:17,546 INFO toNotifyTaskSize = 0 - -2025-09-26 00:44:17,547 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:44:27,060 INFO [long-pulling] client count 0 - -2025-09-26 00:44:27,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:44:27,547 INFO toNotifyTaskSize = 0 - -2025-09-26 00:44:27,547 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:44:37,061 INFO [long-pulling] client count 0 - -2025-09-26 00:44:37,076 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:44:37,548 INFO toNotifyTaskSize = 0 - -2025-09-26 00:44:37,548 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:44:47,062 INFO [long-pulling] client count 0 - -2025-09-26 00:44:47,077 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:44:47,549 INFO toNotifyTaskSize = 0 - -2025-09-26 00:44:47,549 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:44:57,062 INFO [long-pulling] client count 0 - -2025-09-26 00:44:57,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:44:57,550 INFO toNotifyTaskSize = 0 - -2025-09-26 00:44:57,550 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:45:07,063 INFO [long-pulling] client count 0 - -2025-09-26 00:45:07,078 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:45:07,550 INFO toNotifyTaskSize = 0 - -2025-09-26 00:45:07,551 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:45:17,065 INFO [long-pulling] client count 0 - -2025-09-26 00:45:17,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:45:17,551 INFO toNotifyTaskSize = 0 - -2025-09-26 00:45:17,551 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:45:27,066 INFO [long-pulling] client count 0 - -2025-09-26 00:45:27,079 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:45:27,552 INFO toNotifyTaskSize = 0 - -2025-09-26 00:45:27,552 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:45:37,067 INFO [long-pulling] client count 0 - -2025-09-26 00:45:37,081 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:45:37,552 INFO toNotifyTaskSize = 0 - -2025-09-26 00:45:37,552 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:45:47,068 INFO [long-pulling] client count 0 - -2025-09-26 00:45:47,082 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:45:47,553 INFO toNotifyTaskSize = 0 - -2025-09-26 00:45:47,553 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:45:57,070 INFO [long-pulling] client count 0 - -2025-09-26 00:45:57,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:45:57,554 INFO toNotifyTaskSize = 0 - -2025-09-26 00:45:57,555 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:46:07,071 INFO [long-pulling] client count 0 - -2025-09-26 00:46:07,083 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:46:07,555 INFO toNotifyTaskSize = 0 - -2025-09-26 00:46:07,555 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:46:17,071 INFO [long-pulling] client count 0 - -2025-09-26 00:46:17,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:46:17,556 INFO toNotifyTaskSize = 0 - -2025-09-26 00:46:17,556 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:46:27,072 INFO [long-pulling] client count 0 - -2025-09-26 00:46:27,084 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:46:27,556 INFO toNotifyTaskSize = 0 - -2025-09-26 00:46:27,556 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:46:37,074 INFO [long-pulling] client count 0 - -2025-09-26 00:46:37,085 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:46:37,557 INFO toNotifyTaskSize = 0 - -2025-09-26 00:46:37,557 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:46:47,075 INFO [long-pulling] client count 0 - -2025-09-26 00:46:47,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:46:47,557 INFO toNotifyTaskSize = 0 - -2025-09-26 00:46:47,557 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:46:57,075 INFO [long-pulling] client count 0 - -2025-09-26 00:46:57,086 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:46:57,558 INFO toNotifyTaskSize = 0 - -2025-09-26 00:46:57,558 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:47:07,076 INFO [long-pulling] client count 0 - -2025-09-26 00:47:07,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:47:07,559 INFO toNotifyTaskSize = 0 - -2025-09-26 00:47:07,559 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:47:17,076 INFO [long-pulling] client count 0 - -2025-09-26 00:47:17,087 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:47:17,559 INFO toNotifyTaskSize = 0 - -2025-09-26 00:47:17,559 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:47:27,078 INFO [long-pulling] client count 0 - -2025-09-26 00:47:27,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:47:27,560 INFO toNotifyTaskSize = 0 - -2025-09-26 00:47:27,560 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:47:37,079 INFO [long-pulling] client count 0 - -2025-09-26 00:47:37,088 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:47:37,560 INFO toNotifyTaskSize = 0 - -2025-09-26 00:47:37,560 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:47:47,080 INFO [long-pulling] client count 0 - -2025-09-26 00:47:47,089 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:47:47,561 INFO toNotifyTaskSize = 0 - -2025-09-26 00:47:47,561 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:47:57,082 INFO [long-pulling] client count 0 - -2025-09-26 00:47:57,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:47:57,561 INFO toNotifyTaskSize = 0 - -2025-09-26 00:47:57,561 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:48:07,083 INFO [long-pulling] client count 0 - -2025-09-26 00:48:07,090 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:48:07,562 INFO toNotifyTaskSize = 0 - -2025-09-26 00:48:07,562 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:48:17,084 INFO [long-pulling] client count 0 - -2025-09-26 00:48:17,091 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:48:17,563 INFO toNotifyTaskSize = 0 - -2025-09-26 00:48:17,563 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:48:27,085 INFO [long-pulling] client count 0 - -2025-09-26 00:48:27,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:48:27,564 INFO toNotifyTaskSize = 0 - -2025-09-26 00:48:27,564 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:48:37,086 INFO [long-pulling] client count 0 - -2025-09-26 00:48:37,092 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:48:37,564 INFO toNotifyTaskSize = 0 - -2025-09-26 00:48:37,564 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:48:47,087 INFO [long-pulling] client count 0 - -2025-09-26 00:48:47,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:48:47,565 INFO toNotifyTaskSize = 0 - -2025-09-26 00:48:47,565 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:48:57,088 INFO [long-pulling] client count 0 - -2025-09-26 00:48:57,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:48:57,565 INFO toNotifyTaskSize = 0 - -2025-09-26 00:48:57,565 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:49:07,090 INFO [long-pulling] client count 0 - -2025-09-26 00:49:07,093 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:49:07,565 INFO toNotifyTaskSize = 0 - -2025-09-26 00:49:07,565 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:49:17,091 INFO [long-pulling] client count 0 - -2025-09-26 00:49:17,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:49:17,566 INFO toNotifyTaskSize = 0 - -2025-09-26 00:49:17,566 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:49:27,094 INFO [long-pulling] client count 0 - -2025-09-26 00:49:27,094 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:49:27,566 INFO toNotifyTaskSize = 0 - -2025-09-26 00:49:27,568 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:49:37,094 INFO [long-pulling] client count 0 - -2025-09-26 00:49:37,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:49:37,568 INFO toNotifyTaskSize = 0 - -2025-09-26 00:49:37,568 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:49:47,095 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:49:47,095 INFO [long-pulling] client count 0 - -2025-09-26 00:49:47,568 INFO toNotifyTaskSize = 0 - -2025-09-26 00:49:47,568 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:49:57,097 INFO [long-pulling] client count 0 - -2025-09-26 00:49:57,097 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:49:57,569 INFO toNotifyTaskSize = 0 - -2025-09-26 00:49:57,569 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:50:07,098 INFO [long-pulling] client count 0 - -2025-09-26 00:50:07,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:50:07,569 INFO toNotifyTaskSize = 0 - -2025-09-26 00:50:07,570 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:50:17,098 INFO [long-pulling] client count 0 - -2025-09-26 00:50:17,099 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:50:17,570 INFO toNotifyTaskSize = 0 - -2025-09-26 00:50:17,570 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:50:27,099 INFO [long-pulling] client count 0 - -2025-09-26 00:50:27,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:50:27,571 INFO toNotifyTaskSize = 0 - -2025-09-26 00:50:27,571 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:50:37,100 INFO [long-pulling] client count 0 - -2025-09-26 00:50:37,100 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:50:37,572 INFO toNotifyTaskSize = 0 - -2025-09-26 00:50:37,572 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:50:47,101 INFO [long-pulling] client count 0 - -2025-09-26 00:50:47,101 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:50:47,572 INFO toNotifyTaskSize = 0 - -2025-09-26 00:50:47,573 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:50:57,102 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:50:57,102 INFO [long-pulling] client count 0 - -2025-09-26 00:50:57,573 INFO toNotifyTaskSize = 0 - -2025-09-26 00:50:57,573 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:51:07,103 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:51:07,103 INFO [long-pulling] client count 0 - -2025-09-26 00:51:07,573 INFO toNotifyTaskSize = 0 - -2025-09-26 00:51:07,573 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:51:17,104 INFO [long-pulling] client count 0 - -2025-09-26 00:51:17,104 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:51:17,574 INFO toNotifyTaskSize = 0 - -2025-09-26 00:51:17,574 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:51:27,105 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:51:27,105 INFO [long-pulling] client count 0 - -2025-09-26 00:51:27,575 INFO toNotifyTaskSize = 0 - -2025-09-26 00:51:27,575 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:51:37,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:51:37,106 INFO [long-pulling] client count 0 - -2025-09-26 00:51:37,575 INFO toNotifyTaskSize = 0 - -2025-09-26 00:51:37,576 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:51:47,106 INFO [long-pulling] client count 0 - -2025-09-26 00:51:47,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:51:47,576 INFO toNotifyTaskSize = 0 - -2025-09-26 00:51:47,576 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:51:57,106 INFO [long-pulling] client count 0 - -2025-09-26 00:51:57,106 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:51:57,576 INFO toNotifyTaskSize = 0 - -2025-09-26 00:51:57,576 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:52:07,107 INFO [long-pulling] client count 0 - -2025-09-26 00:52:07,107 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:52:07,577 INFO toNotifyTaskSize = 0 - -2025-09-26 00:52:07,577 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:52:17,109 INFO [long-pulling] client count 0 - -2025-09-26 00:52:17,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:52:17,578 INFO toNotifyTaskSize = 0 - -2025-09-26 00:52:17,578 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:52:27,109 INFO [long-pulling] client count 0 - -2025-09-26 00:52:27,109 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:52:27,578 INFO toNotifyTaskSize = 0 - -2025-09-26 00:52:27,578 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:52:37,111 INFO [long-pulling] client count 0 - -2025-09-26 00:52:37,111 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:52:37,579 INFO toNotifyTaskSize = 0 - -2025-09-26 00:52:37,579 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:52:47,111 INFO [long-pulling] client count 0 - -2025-09-26 00:52:47,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:52:47,580 INFO toNotifyTaskSize = 0 - -2025-09-26 00:52:47,580 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:52:57,111 INFO [long-pulling] client count 0 - -2025-09-26 00:52:57,112 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:52:57,580 INFO toNotifyTaskSize = 0 - -2025-09-26 00:52:57,580 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:53:07,112 INFO [long-pulling] client count 0 - -2025-09-26 00:53:07,113 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:53:07,580 INFO toNotifyTaskSize = 0 - -2025-09-26 00:53:07,581 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:53:17,112 INFO [long-pulling] client count 0 - -2025-09-26 00:53:17,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:53:17,582 INFO toNotifyTaskSize = 0 - -2025-09-26 00:53:17,582 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:53:27,113 INFO [long-pulling] client count 0 - -2025-09-26 00:53:27,114 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:53:27,582 INFO toNotifyTaskSize = 0 - -2025-09-26 00:53:27,582 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:53:37,114 INFO [long-pulling] client count 0 - -2025-09-26 00:53:37,115 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:53:37,583 INFO toNotifyTaskSize = 0 - -2025-09-26 00:53:37,584 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:53:47,115 INFO [long-pulling] client count 0 - -2025-09-26 00:53:47,115 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:53:47,585 INFO toNotifyTaskSize = 0 - -2025-09-26 00:53:47,585 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:53:57,115 INFO [long-pulling] client count 0 - -2025-09-26 00:53:57,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:53:57,585 INFO toNotifyTaskSize = 0 - -2025-09-26 00:53:57,585 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:54:07,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:54:07,116 INFO [long-pulling] client count 0 - -2025-09-26 00:54:07,585 INFO toNotifyTaskSize = 0 - -2025-09-26 00:54:07,585 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:54:17,116 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:54:17,117 INFO [long-pulling] client count 0 - -2025-09-26 00:54:17,586 INFO toNotifyTaskSize = 0 - -2025-09-26 00:54:17,586 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:54:27,117 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:54:27,118 INFO [long-pulling] client count 0 - -2025-09-26 00:54:27,587 INFO toNotifyTaskSize = 0 - -2025-09-26 00:54:27,587 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:54:37,118 INFO [long-pulling] client count 0 - -2025-09-26 00:54:37,118 INFO groupCount = 3, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:54:37,588 INFO toNotifyTaskSize = 0 - -2025-09-26 00:54:37,588 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:54:47,120 INFO [long-pulling] client count 0 - -2025-09-26 00:54:47,120 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:54:47,589 INFO toNotifyTaskSize = 0 - -2025-09-26 00:54:47,589 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:54:57,121 INFO [long-pulling] client count 0 - -2025-09-26 00:54:57,121 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:54:57,590 INFO toNotifyTaskSize = 0 - -2025-09-26 00:54:57,590 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:55:07,121 INFO [long-pulling] client count 0 - -2025-09-26 00:55:07,121 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:55:07,591 INFO toNotifyTaskSize = 0 - -2025-09-26 00:55:07,591 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:55:17,122 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:55:17,123 INFO [long-pulling] client count 0 - -2025-09-26 00:55:17,592 INFO toNotifyTaskSize = 0 - -2025-09-26 00:55:17,593 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:55:27,124 INFO [long-pulling] client count 0 - -2025-09-26 00:55:27,124 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:55:27,593 INFO toNotifyTaskSize = 0 - -2025-09-26 00:55:27,593 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:55:37,125 INFO [long-pulling] client count 0 - -2025-09-26 00:55:37,125 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:55:37,593 INFO toNotifyTaskSize = 0 - -2025-09-26 00:55:37,593 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:55:47,125 INFO [long-pulling] client count 0 - -2025-09-26 00:55:47,125 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:55:47,594 INFO toNotifyTaskSize = 0 - -2025-09-26 00:55:47,594 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:55:57,126 INFO [long-pulling] client count 0 - -2025-09-26 00:55:57,126 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:55:57,595 INFO toNotifyTaskSize = 0 - -2025-09-26 00:55:57,595 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:56:07,126 INFO [long-pulling] client count 0 - -2025-09-26 00:56:07,127 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:56:07,596 INFO toNotifyTaskSize = 0 - -2025-09-26 00:56:07,596 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:56:17,127 INFO [long-pulling] client count 0 - -2025-09-26 00:56:17,127 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:56:17,597 INFO toNotifyTaskSize = 0 - -2025-09-26 00:56:17,597 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:56:27,127 INFO [long-pulling] client count 0 - -2025-09-26 00:56:27,128 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:56:27,598 INFO toNotifyTaskSize = 0 - -2025-09-26 00:56:27,598 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:56:37,128 INFO [long-pulling] client count 0 - -2025-09-26 00:56:37,129 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:56:37,599 INFO toNotifyTaskSize = 0 - -2025-09-26 00:56:37,599 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:56:47,129 INFO [long-pulling] client count 0 - -2025-09-26 00:56:47,129 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:56:47,600 INFO toNotifyTaskSize = 0 - -2025-09-26 00:56:47,600 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:56:57,130 INFO [long-pulling] client count 0 - -2025-09-26 00:56:57,130 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:56:57,600 INFO toNotifyTaskSize = 0 - -2025-09-26 00:56:57,600 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:57:07,131 INFO [long-pulling] client count 0 - -2025-09-26 00:57:07,131 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:57:07,600 INFO toNotifyTaskSize = 0 - -2025-09-26 00:57:07,601 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:57:17,132 INFO [long-pulling] client count 0 - -2025-09-26 00:57:17,132 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:57:17,601 INFO toNotifyTaskSize = 0 - -2025-09-26 00:57:17,601 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:57:27,136 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:57:27,136 INFO [long-pulling] client count 0 - -2025-09-26 00:57:27,601 INFO toNotifyTaskSize = 0 - -2025-09-26 00:57:27,601 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:57:37,136 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:57:37,136 INFO [long-pulling] client count 0 - -2025-09-26 00:57:37,603 INFO toNotifyTaskSize = 0 - -2025-09-26 00:57:37,603 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:57:47,137 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:57:47,137 INFO [long-pulling] client count 0 - -2025-09-26 00:57:47,603 INFO toNotifyTaskSize = 0 - -2025-09-26 00:57:47,603 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:57:57,138 INFO [long-pulling] client count 0 - -2025-09-26 00:57:57,138 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:57:57,604 INFO toNotifyTaskSize = 0 - -2025-09-26 00:57:57,604 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:58:07,138 INFO [long-pulling] client count 0 - -2025-09-26 00:58:07,138 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:58:07,604 INFO toNotifyTaskSize = 0 - -2025-09-26 00:58:07,604 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:58:17,140 INFO [long-pulling] client count 0 - -2025-09-26 00:58:17,140 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:58:17,605 INFO toNotifyTaskSize = 0 - -2025-09-26 00:58:17,605 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:58:27,141 INFO [long-pulling] client count 0 - -2025-09-26 00:58:27,141 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:58:27,606 INFO toNotifyTaskSize = 0 - -2025-09-26 00:58:27,606 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:58:37,143 INFO [long-pulling] client count 0 - -2025-09-26 00:58:37,143 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:58:37,607 INFO toNotifyTaskSize = 0 - -2025-09-26 00:58:37,607 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:58:47,145 INFO [long-pulling] client count 0 - -2025-09-26 00:58:47,145 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:58:47,608 INFO toNotifyTaskSize = 0 - -2025-09-26 00:58:47,608 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:58:57,147 INFO [long-pulling] client count 0 - -2025-09-26 00:58:57,147 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:58:57,609 INFO toNotifyTaskSize = 0 - -2025-09-26 00:58:57,609 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:59:07,148 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:59:07,148 INFO [long-pulling] client count 0 - -2025-09-26 00:59:07,610 INFO toNotifyTaskSize = 0 - -2025-09-26 00:59:07,610 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:59:17,149 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:59:17,149 INFO [long-pulling] client count 0 - -2025-09-26 00:59:17,612 INFO toNotifyTaskSize = 0 - -2025-09-26 00:59:17,612 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:59:27,151 INFO [long-pulling] client count 0 - -2025-09-26 00:59:27,151 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:59:27,615 INFO toNotifyTaskSize = 0 - -2025-09-26 00:59:27,615 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:59:37,152 INFO [long-pulling] client count 0 - -2025-09-26 00:59:37,152 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:59:37,616 INFO toNotifyTaskSize = 0 - -2025-09-26 00:59:37,616 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:59:47,152 INFO [long-pulling] client count 0 - -2025-09-26 00:59:47,152 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:59:47,616 INFO toNotifyTaskSize = 0 - -2025-09-26 00:59:47,617 INFO toClientNotifyTaskSize = 0 - -2025-09-26 00:59:57,152 INFO [long-pulling] client count 0 - -2025-09-26 00:59:57,153 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 00:59:57,617 INFO toNotifyTaskSize = 0 - -2025-09-26 00:59:57,617 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:00:07,153 INFO [long-pulling] client count 0 - -2025-09-26 01:00:07,153 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:00:07,617 INFO toNotifyTaskSize = 0 - -2025-09-26 01:00:07,618 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:00:17,153 INFO [long-pulling] client count 0 - -2025-09-26 01:00:17,153 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:00:17,618 INFO toNotifyTaskSize = 0 - -2025-09-26 01:00:17,619 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:00:27,155 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:00:27,155 INFO [long-pulling] client count 0 - -2025-09-26 01:00:27,619 INFO toNotifyTaskSize = 0 - -2025-09-26 01:00:27,619 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:00:37,156 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:00:37,156 INFO [long-pulling] client count 0 - -2025-09-26 01:00:37,620 INFO toNotifyTaskSize = 0 - -2025-09-26 01:00:37,620 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:00:47,156 INFO [long-pulling] client count 0 - -2025-09-26 01:00:47,156 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:00:47,620 INFO toNotifyTaskSize = 0 - -2025-09-26 01:00:47,620 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:00:57,157 INFO [long-pulling] client count 0 - -2025-09-26 01:00:57,157 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:00:57,621 INFO toNotifyTaskSize = 0 - -2025-09-26 01:00:57,621 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:01:07,157 INFO [long-pulling] client count 0 - -2025-09-26 01:01:07,157 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:01:07,622 INFO toNotifyTaskSize = 0 - -2025-09-26 01:01:07,622 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:01:17,159 INFO [long-pulling] client count 0 - -2025-09-26 01:01:17,159 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:01:17,623 INFO toNotifyTaskSize = 0 - -2025-09-26 01:01:17,623 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:01:27,159 INFO [long-pulling] client count 0 - -2025-09-26 01:01:27,159 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:01:27,624 INFO toNotifyTaskSize = 0 - -2025-09-26 01:01:27,624 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:01:37,160 INFO [long-pulling] client count 0 - -2025-09-26 01:01:37,160 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:01:37,625 INFO toNotifyTaskSize = 0 - -2025-09-26 01:01:37,625 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:01:47,161 INFO [long-pulling] client count 0 - -2025-09-26 01:01:47,161 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:01:47,626 INFO toNotifyTaskSize = 0 - -2025-09-26 01:01:47,626 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:01:57,161 INFO [long-pulling] client count 0 - -2025-09-26 01:01:57,161 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:01:57,627 INFO toNotifyTaskSize = 0 - -2025-09-26 01:01:57,627 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:02:07,162 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:02:07,162 INFO [long-pulling] client count 0 - -2025-09-26 01:02:07,628 INFO toNotifyTaskSize = 0 - -2025-09-26 01:02:07,628 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:02:17,163 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:02:17,163 INFO [long-pulling] client count 0 - -2025-09-26 01:02:17,629 INFO toNotifyTaskSize = 0 - -2025-09-26 01:02:17,629 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:02:27,163 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:02:27,164 INFO [long-pulling] client count 0 - -2025-09-26 01:02:27,629 INFO toNotifyTaskSize = 0 - -2025-09-26 01:02:27,629 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:02:37,165 INFO [long-pulling] client count 0 - -2025-09-26 01:02:37,165 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:02:37,630 INFO toNotifyTaskSize = 0 - -2025-09-26 01:02:37,630 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:02:47,166 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:02:47,166 INFO [long-pulling] client count 0 - -2025-09-26 01:02:47,631 INFO toNotifyTaskSize = 0 - -2025-09-26 01:02:47,631 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:02:57,168 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:02:57,168 INFO [long-pulling] client count 0 - -2025-09-26 01:02:57,631 INFO toNotifyTaskSize = 0 - -2025-09-26 01:02:57,632 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:03:07,168 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:03:07,169 INFO [long-pulling] client count 0 - -2025-09-26 01:03:07,632 INFO toNotifyTaskSize = 0 - -2025-09-26 01:03:07,632 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:03:17,169 INFO [long-pulling] client count 0 - -2025-09-26 01:03:17,169 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:03:17,633 INFO toNotifyTaskSize = 0 - -2025-09-26 01:03:17,633 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:03:27,170 INFO [long-pulling] client count 0 - -2025-09-26 01:03:27,170 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:03:27,633 INFO toNotifyTaskSize = 0 - -2025-09-26 01:03:27,633 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:03:37,171 INFO [long-pulling] client count 0 - -2025-09-26 01:03:37,171 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:03:37,634 INFO toNotifyTaskSize = 0 - -2025-09-26 01:03:37,634 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:03:47,171 INFO [long-pulling] client count 0 - -2025-09-26 01:03:47,171 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:03:47,635 INFO toNotifyTaskSize = 0 - -2025-09-26 01:03:47,635 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:03:57,172 INFO [long-pulling] client count 0 - -2025-09-26 01:03:57,172 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:03:57,635 INFO toNotifyTaskSize = 0 - -2025-09-26 01:03:57,635 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:04:07,172 INFO [long-pulling] client count 0 - -2025-09-26 01:04:07,173 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:04:07,636 INFO toNotifyTaskSize = 0 - -2025-09-26 01:04:07,636 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:04:17,173 INFO [long-pulling] client count 0 - -2025-09-26 01:04:17,173 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:04:17,637 INFO toNotifyTaskSize = 0 - -2025-09-26 01:04:17,637 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:04:27,173 INFO [long-pulling] client count 0 - -2025-09-26 01:04:27,174 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:04:27,637 INFO toNotifyTaskSize = 0 - -2025-09-26 01:04:27,638 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:04:37,174 INFO [long-pulling] client count 0 - -2025-09-26 01:04:37,175 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:04:37,639 INFO toNotifyTaskSize = 0 - -2025-09-26 01:04:37,639 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:04:47,175 INFO [long-pulling] client count 0 - -2025-09-26 01:04:47,176 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:04:47,640 INFO toNotifyTaskSize = 0 - -2025-09-26 01:04:47,640 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:04:57,177 INFO [long-pulling] client count 0 - -2025-09-26 01:04:57,177 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:04:57,640 INFO toNotifyTaskSize = 0 - -2025-09-26 01:04:57,641 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:05:07,178 INFO [long-pulling] client count 0 - -2025-09-26 01:05:07,178 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:05:07,642 INFO toNotifyTaskSize = 0 - -2025-09-26 01:05:07,642 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:05:17,178 INFO [long-pulling] client count 0 - -2025-09-26 01:05:17,178 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:05:17,643 INFO toNotifyTaskSize = 0 - -2025-09-26 01:05:17,643 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:05:27,178 INFO [long-pulling] client count 0 - -2025-09-26 01:05:27,179 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:05:27,643 INFO toNotifyTaskSize = 0 - -2025-09-26 01:05:27,644 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:05:37,179 INFO [long-pulling] client count 0 - -2025-09-26 01:05:37,180 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:05:37,644 INFO toNotifyTaskSize = 0 - -2025-09-26 01:05:37,644 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:05:47,180 INFO [long-pulling] client count 0 - -2025-09-26 01:05:47,180 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:05:47,645 INFO toNotifyTaskSize = 0 - -2025-09-26 01:05:47,645 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:05:57,181 INFO [long-pulling] client count 0 - -2025-09-26 01:05:57,181 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:05:57,647 INFO toNotifyTaskSize = 0 - -2025-09-26 01:05:57,647 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:06:07,181 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:06:07,181 INFO [long-pulling] client count 0 - -2025-09-26 01:06:07,647 INFO toNotifyTaskSize = 0 - -2025-09-26 01:06:07,648 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:06:17,181 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:06:17,181 INFO [long-pulling] client count 0 - -2025-09-26 01:06:17,648 INFO toNotifyTaskSize = 0 - -2025-09-26 01:06:17,648 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:06:27,181 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:06:27,182 INFO [long-pulling] client count 0 - -2025-09-26 01:06:27,649 INFO toNotifyTaskSize = 0 - -2025-09-26 01:06:27,649 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:06:37,182 INFO [long-pulling] client count 0 - -2025-09-26 01:06:37,182 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:06:37,649 INFO toNotifyTaskSize = 0 - -2025-09-26 01:06:37,649 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:06:47,183 INFO [long-pulling] client count 0 - -2025-09-26 01:06:47,183 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:06:47,650 INFO toNotifyTaskSize = 0 - -2025-09-26 01:06:47,651 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:06:57,183 INFO [long-pulling] client count 0 - -2025-09-26 01:06:57,183 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:06:57,651 INFO toNotifyTaskSize = 0 - -2025-09-26 01:06:57,651 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:07:07,184 INFO [long-pulling] client count 0 - -2025-09-26 01:07:07,185 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:07:07,651 INFO toNotifyTaskSize = 0 - -2025-09-26 01:07:07,651 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:07:17,185 INFO [long-pulling] client count 0 - -2025-09-26 01:07:17,185 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:07:17,652 INFO toNotifyTaskSize = 0 - -2025-09-26 01:07:17,652 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:07:27,186 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:07:27,186 INFO [long-pulling] client count 0 - -2025-09-26 01:07:27,652 INFO toNotifyTaskSize = 0 - -2025-09-26 01:07:27,652 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:07:37,186 INFO [long-pulling] client count 0 - -2025-09-26 01:07:37,186 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:07:37,652 INFO toNotifyTaskSize = 0 - -2025-09-26 01:07:37,653 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:07:47,187 INFO [long-pulling] client count 0 - -2025-09-26 01:07:47,187 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:07:47,653 INFO toNotifyTaskSize = 0 - -2025-09-26 01:07:47,653 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:07:57,187 INFO [long-pulling] client count 0 - -2025-09-26 01:07:57,188 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:07:57,654 INFO toNotifyTaskSize = 0 - -2025-09-26 01:07:57,654 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:08:07,187 INFO [long-pulling] client count 0 - -2025-09-26 01:08:07,189 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:08:07,655 INFO toNotifyTaskSize = 0 - -2025-09-26 01:08:07,655 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:08:17,188 INFO [long-pulling] client count 0 - -2025-09-26 01:08:17,190 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:08:17,656 INFO toNotifyTaskSize = 0 - -2025-09-26 01:08:17,656 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:08:27,190 INFO [long-pulling] client count 0 - -2025-09-26 01:08:27,190 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:08:27,656 INFO toNotifyTaskSize = 0 - -2025-09-26 01:08:27,657 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:08:37,190 INFO [long-pulling] client count 0 - -2025-09-26 01:08:37,190 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:08:37,657 INFO toNotifyTaskSize = 0 - -2025-09-26 01:08:37,657 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:08:47,192 INFO [long-pulling] client count 0 - -2025-09-26 01:08:47,192 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:08:47,658 INFO toNotifyTaskSize = 0 - -2025-09-26 01:08:47,658 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:08:57,193 INFO [long-pulling] client count 0 - -2025-09-26 01:08:57,193 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:08:57,659 INFO toNotifyTaskSize = 0 - -2025-09-26 01:08:57,659 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:09:07,194 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:09:07,194 INFO [long-pulling] client count 0 - -2025-09-26 01:09:07,660 INFO toNotifyTaskSize = 0 - -2025-09-26 01:09:07,660 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:09:17,195 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:09:17,195 INFO [long-pulling] client count 0 - -2025-09-26 01:09:17,661 INFO toNotifyTaskSize = 0 - -2025-09-26 01:09:17,661 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:09:27,238 INFO [long-pulling] client count 0 - -2025-09-26 01:09:27,238 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:09:27,662 INFO toNotifyTaskSize = 0 - -2025-09-26 01:09:27,662 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:09:37,239 INFO [long-pulling] client count 0 - -2025-09-26 01:09:37,240 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:09:37,663 INFO toNotifyTaskSize = 0 - -2025-09-26 01:09:37,663 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:09:47,239 INFO [long-pulling] client count 0 - -2025-09-26 01:09:47,240 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:09:47,663 INFO toNotifyTaskSize = 0 - -2025-09-26 01:09:47,663 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:09:57,240 INFO [long-pulling] client count 0 - -2025-09-26 01:09:57,241 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:09:57,664 INFO toNotifyTaskSize = 0 - -2025-09-26 01:09:57,664 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:10:07,241 INFO [long-pulling] client count 0 - -2025-09-26 01:10:07,241 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:10:07,665 INFO toNotifyTaskSize = 0 - -2025-09-26 01:10:07,665 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:10:17,241 INFO [long-pulling] client count 0 - -2025-09-26 01:10:17,241 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:10:17,666 INFO toNotifyTaskSize = 0 - -2025-09-26 01:10:17,666 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:10:27,242 INFO [long-pulling] client count 0 - -2025-09-26 01:10:27,242 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:10:27,666 INFO toNotifyTaskSize = 0 - -2025-09-26 01:10:27,666 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:10:37,242 INFO [long-pulling] client count 0 - -2025-09-26 01:10:37,242 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:10:37,667 INFO toNotifyTaskSize = 0 - -2025-09-26 01:10:37,667 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:10:47,243 INFO [long-pulling] client count 0 - -2025-09-26 01:10:47,243 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:10:47,668 INFO toNotifyTaskSize = 0 - -2025-09-26 01:10:47,668 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:10:57,244 INFO groupCount = 1, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:10:57,246 INFO [long-pulling] client count 0 - -2025-09-26 01:10:57,668 INFO toNotifyTaskSize = 0 - -2025-09-26 01:10:57,669 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:11:07,246 INFO [long-pulling] client count 0 - -2025-09-26 01:11:07,246 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:11:07,669 INFO toNotifyTaskSize = 0 - -2025-09-26 01:11:07,669 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:11:17,247 INFO [long-pulling] client count 0 - -2025-09-26 01:11:17,247 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:11:17,670 INFO toNotifyTaskSize = 0 - -2025-09-26 01:11:17,671 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:11:27,249 INFO [long-pulling] client count 0 - -2025-09-26 01:11:27,249 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:11:27,671 INFO toNotifyTaskSize = 0 - -2025-09-26 01:11:27,672 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:11:37,249 INFO [long-pulling] client count 0 - -2025-09-26 01:11:37,249 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:11:37,672 INFO toNotifyTaskSize = 0 - -2025-09-26 01:11:37,672 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:11:47,250 INFO [long-pulling] client count 0 - -2025-09-26 01:11:47,250 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:11:47,672 INFO toNotifyTaskSize = 0 - -2025-09-26 01:11:47,672 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:11:57,250 INFO [long-pulling] client count 0 - -2025-09-26 01:11:57,251 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:11:57,673 INFO toNotifyTaskSize = 0 - -2025-09-26 01:11:57,673 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:12:07,251 INFO [long-pulling] client count 0 - -2025-09-26 01:12:07,252 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:12:07,673 INFO toNotifyTaskSize = 0 - -2025-09-26 01:12:07,673 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:12:17,252 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:12:17,253 INFO [long-pulling] client count 0 - -2025-09-26 01:12:17,673 INFO toNotifyTaskSize = 0 - -2025-09-26 01:12:17,674 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:12:27,254 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:12:27,255 INFO [long-pulling] client count 0 - -2025-09-26 01:12:27,674 INFO toNotifyTaskSize = 0 - -2025-09-26 01:12:27,674 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:12:37,255 INFO [long-pulling] client count 0 - -2025-09-26 01:12:37,255 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:12:37,675 INFO toNotifyTaskSize = 0 - -2025-09-26 01:12:37,675 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:12:47,256 INFO [long-pulling] client count 0 - -2025-09-26 01:12:47,256 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:12:47,675 INFO toNotifyTaskSize = 0 - -2025-09-26 01:12:47,676 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:12:57,257 INFO [long-pulling] client count 0 - -2025-09-26 01:12:57,258 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:12:57,676 INFO toNotifyTaskSize = 0 - -2025-09-26 01:12:57,676 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:13:07,259 INFO [long-pulling] client count 0 - -2025-09-26 01:13:07,259 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:13:07,677 INFO toNotifyTaskSize = 0 - -2025-09-26 01:13:07,677 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:13:17,259 INFO [long-pulling] client count 0 - -2025-09-26 01:13:17,259 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:13:17,678 INFO toNotifyTaskSize = 0 - -2025-09-26 01:13:17,678 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:13:27,261 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:13:27,261 INFO [long-pulling] client count 0 - -2025-09-26 01:13:27,679 INFO toNotifyTaskSize = 0 - -2025-09-26 01:13:27,679 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:13:37,262 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:13:37,263 INFO [long-pulling] client count 0 - -2025-09-26 01:13:37,679 INFO toNotifyTaskSize = 0 - -2025-09-26 01:13:37,679 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:13:47,263 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:13:47,264 INFO [long-pulling] client count 0 - -2025-09-26 01:13:47,680 INFO toNotifyTaskSize = 0 - -2025-09-26 01:13:47,682 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:13:57,264 INFO [long-pulling] client count 0 - -2025-09-26 01:13:57,264 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:13:57,682 INFO toNotifyTaskSize = 0 - -2025-09-26 01:13:57,682 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:14:07,265 INFO [long-pulling] client count 0 - -2025-09-26 01:14:07,265 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:14:07,683 INFO toNotifyTaskSize = 0 - -2025-09-26 01:14:07,683 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:14:17,265 INFO [long-pulling] client count 0 - -2025-09-26 01:14:17,266 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:14:17,683 INFO toNotifyTaskSize = 0 - -2025-09-26 01:14:17,683 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:14:27,265 INFO [long-pulling] client count 0 - -2025-09-26 01:14:27,266 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:14:27,684 INFO toNotifyTaskSize = 0 - -2025-09-26 01:14:27,684 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:14:37,266 INFO [long-pulling] client count 0 - -2025-09-26 01:14:37,267 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:14:37,684 INFO toNotifyTaskSize = 0 - -2025-09-26 01:14:37,684 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:14:47,268 INFO [long-pulling] client count 0 - -2025-09-26 01:14:47,268 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:14:47,685 INFO toNotifyTaskSize = 0 - -2025-09-26 01:14:47,685 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:14:57,269 INFO [long-pulling] client count 0 - -2025-09-26 01:14:57,269 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:14:57,686 INFO toNotifyTaskSize = 0 - -2025-09-26 01:14:57,686 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:15:07,271 INFO [long-pulling] client count 0 - -2025-09-26 01:15:07,271 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:15:07,686 INFO toNotifyTaskSize = 0 - -2025-09-26 01:15:07,686 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:15:17,272 INFO [long-pulling] client count 0 - -2025-09-26 01:15:17,272 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:15:17,687 INFO toNotifyTaskSize = 0 - -2025-09-26 01:15:17,687 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:15:27,273 INFO [long-pulling] client count 0 - -2025-09-26 01:15:27,273 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:15:27,688 INFO toNotifyTaskSize = 0 - -2025-09-26 01:15:27,688 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:15:37,274 INFO [long-pulling] client count 0 - -2025-09-26 01:15:37,274 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:15:37,688 INFO toNotifyTaskSize = 0 - -2025-09-26 01:15:37,689 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:15:47,275 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:15:47,275 INFO [long-pulling] client count 0 - -2025-09-26 01:15:47,689 INFO toNotifyTaskSize = 0 - -2025-09-26 01:15:47,689 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:15:57,276 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:15:57,276 INFO [long-pulling] client count 0 - -2025-09-26 01:15:57,689 INFO toNotifyTaskSize = 0 - -2025-09-26 01:15:57,689 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:16:07,277 INFO [long-pulling] client count 0 - -2025-09-26 01:16:07,277 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:16:07,690 INFO toNotifyTaskSize = 0 - -2025-09-26 01:16:07,690 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:16:17,278 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:16:17,278 INFO [long-pulling] client count 0 - -2025-09-26 01:16:17,692 INFO toNotifyTaskSize = 0 - -2025-09-26 01:16:17,692 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:16:27,279 INFO [long-pulling] client count 0 - -2025-09-26 01:16:27,279 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:16:27,692 INFO toNotifyTaskSize = 0 - -2025-09-26 01:16:27,692 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:16:37,279 INFO [long-pulling] client count 0 - -2025-09-26 01:16:37,280 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:16:37,693 INFO toNotifyTaskSize = 0 - -2025-09-26 01:16:37,693 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:16:47,281 INFO [long-pulling] client count 0 - -2025-09-26 01:16:47,281 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:16:47,693 INFO toNotifyTaskSize = 0 - -2025-09-26 01:16:47,694 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:16:57,282 INFO [long-pulling] client count 0 - -2025-09-26 01:16:57,282 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:16:57,695 INFO toNotifyTaskSize = 0 - -2025-09-26 01:16:57,695 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:17:07,284 INFO [long-pulling] client count 0 - -2025-09-26 01:17:07,285 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:17:07,695 INFO toNotifyTaskSize = 0 - -2025-09-26 01:17:07,702 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:17:17,285 INFO [long-pulling] client count 0 - -2025-09-26 01:17:17,286 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:17:17,703 INFO toNotifyTaskSize = 0 - -2025-09-26 01:17:17,703 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:17:27,286 INFO [long-pulling] client count 0 - -2025-09-26 01:17:27,286 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:17:27,704 INFO toNotifyTaskSize = 0 - -2025-09-26 01:17:27,704 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:17:37,287 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:17:37,287 INFO [long-pulling] client count 0 - -2025-09-26 01:17:37,704 INFO toNotifyTaskSize = 0 - -2025-09-26 01:17:37,704 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:17:47,288 INFO [long-pulling] client count 0 - -2025-09-26 01:17:47,288 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:17:47,705 INFO toNotifyTaskSize = 0 - -2025-09-26 01:17:47,705 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:17:57,289 INFO [long-pulling] client count 0 - -2025-09-26 01:17:57,289 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:17:57,705 INFO toNotifyTaskSize = 0 - -2025-09-26 01:17:57,705 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:18:07,290 INFO [long-pulling] client count 0 - -2025-09-26 01:18:07,290 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:18:07,706 INFO toNotifyTaskSize = 0 - -2025-09-26 01:18:07,706 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:18:17,290 INFO [long-pulling] client count 0 - -2025-09-26 01:18:17,290 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:18:17,707 INFO toNotifyTaskSize = 0 - -2025-09-26 01:18:17,707 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:18:27,291 INFO [long-pulling] client count 0 - -2025-09-26 01:18:27,291 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:18:27,708 INFO toNotifyTaskSize = 0 - -2025-09-26 01:18:27,708 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:18:37,291 INFO [long-pulling] client count 0 - -2025-09-26 01:18:37,291 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:18:37,708 INFO toNotifyTaskSize = 0 - -2025-09-26 01:18:37,709 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:18:47,292 INFO [long-pulling] client count 0 - -2025-09-26 01:18:47,292 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:18:47,709 INFO toNotifyTaskSize = 0 - -2025-09-26 01:18:47,709 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:18:57,293 INFO [long-pulling] client count 0 - -2025-09-26 01:18:57,293 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:18:57,710 INFO toNotifyTaskSize = 0 - -2025-09-26 01:18:57,710 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:19:07,293 INFO [long-pulling] client count 0 - -2025-09-26 01:19:07,293 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:19:07,711 INFO toNotifyTaskSize = 0 - -2025-09-26 01:19:07,711 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:19:17,293 INFO [long-pulling] client count 0 - -2025-09-26 01:19:17,293 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:19:17,711 INFO toNotifyTaskSize = 0 - -2025-09-26 01:19:17,712 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:19:27,294 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:19:27,294 INFO [long-pulling] client count 0 - -2025-09-26 01:19:27,712 INFO toNotifyTaskSize = 0 - -2025-09-26 01:19:27,712 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:19:37,295 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:19:37,295 INFO [long-pulling] client count 0 - -2025-09-26 01:19:37,712 INFO toNotifyTaskSize = 0 - -2025-09-26 01:19:37,713 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:19:47,295 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:19:47,295 INFO [long-pulling] client count 0 - -2025-09-26 01:19:47,713 INFO toNotifyTaskSize = 0 - -2025-09-26 01:19:47,713 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:19:57,296 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:19:57,297 INFO [long-pulling] client count 0 - -2025-09-26 01:19:57,714 INFO toNotifyTaskSize = 0 - -2025-09-26 01:19:57,714 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:20:07,297 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:20:07,298 INFO [long-pulling] client count 0 - -2025-09-26 01:20:07,714 INFO toNotifyTaskSize = 0 - -2025-09-26 01:20:07,714 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:20:17,298 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:20:17,298 INFO [long-pulling] client count 0 - -2025-09-26 01:20:17,715 INFO toNotifyTaskSize = 0 - -2025-09-26 01:20:17,715 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:20:27,298 INFO [long-pulling] client count 0 - -2025-09-26 01:20:27,299 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:20:27,716 INFO toNotifyTaskSize = 0 - -2025-09-26 01:20:27,716 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:20:37,299 INFO [long-pulling] client count 0 - -2025-09-26 01:20:37,299 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:20:37,716 INFO toNotifyTaskSize = 0 - -2025-09-26 01:20:37,716 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:20:47,300 INFO [long-pulling] client count 0 - -2025-09-26 01:20:47,300 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:20:47,717 INFO toNotifyTaskSize = 0 - -2025-09-26 01:20:47,717 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:20:57,300 INFO [long-pulling] client count 0 - -2025-09-26 01:20:57,301 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:20:57,718 INFO toNotifyTaskSize = 0 - -2025-09-26 01:20:57,718 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:21:07,302 INFO [long-pulling] client count 0 - -2025-09-26 01:21:07,303 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:21:07,718 INFO toNotifyTaskSize = 0 - -2025-09-26 01:21:07,719 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:21:17,303 INFO [long-pulling] client count 0 - -2025-09-26 01:21:17,304 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:21:17,719 INFO toNotifyTaskSize = 0 - -2025-09-26 01:21:17,719 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:21:27,304 INFO [long-pulling] client count 0 - -2025-09-26 01:21:27,304 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:21:27,719 INFO toNotifyTaskSize = 0 - -2025-09-26 01:21:27,719 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:21:37,306 INFO [long-pulling] client count 0 - -2025-09-26 01:21:37,306 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:21:37,720 INFO toNotifyTaskSize = 0 - -2025-09-26 01:21:37,720 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:21:47,307 INFO [long-pulling] client count 0 - -2025-09-26 01:21:47,307 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:21:47,720 INFO toNotifyTaskSize = 0 - -2025-09-26 01:21:47,721 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:21:57,308 INFO [long-pulling] client count 0 - -2025-09-26 01:21:57,308 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:21:57,721 INFO toNotifyTaskSize = 0 - -2025-09-26 01:21:57,721 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:22:07,310 INFO [long-pulling] client count 0 - -2025-09-26 01:22:07,310 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:22:07,722 INFO toNotifyTaskSize = 0 - -2025-09-26 01:22:07,722 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:22:17,311 INFO [long-pulling] client count 0 - -2025-09-26 01:22:17,311 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:22:17,722 INFO toNotifyTaskSize = 0 - -2025-09-26 01:22:17,722 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:22:27,311 INFO [long-pulling] client count 0 - -2025-09-26 01:22:27,312 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:22:27,722 INFO toNotifyTaskSize = 0 - -2025-09-26 01:22:27,723 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:22:37,312 INFO [long-pulling] client count 0 - -2025-09-26 01:22:37,313 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:22:37,723 INFO toNotifyTaskSize = 0 - -2025-09-26 01:22:37,723 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:22:47,313 INFO [long-pulling] client count 0 - -2025-09-26 01:22:47,314 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:22:47,723 INFO toNotifyTaskSize = 0 - -2025-09-26 01:22:47,723 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:22:57,314 INFO [long-pulling] client count 0 - -2025-09-26 01:22:57,315 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:22:57,724 INFO toNotifyTaskSize = 0 - -2025-09-26 01:22:57,724 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:23:07,315 INFO [long-pulling] client count 0 - -2025-09-26 01:23:07,316 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:23:07,725 INFO toNotifyTaskSize = 0 - -2025-09-26 01:23:07,725 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:23:17,316 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:23:17,315 INFO [long-pulling] client count 0 - -2025-09-26 01:23:17,725 INFO toNotifyTaskSize = 0 - -2025-09-26 01:23:17,726 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:23:27,318 INFO [long-pulling] client count 0 - -2025-09-26 01:23:27,318 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:23:27,726 INFO toNotifyTaskSize = 0 - -2025-09-26 01:23:27,726 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:23:37,319 INFO [long-pulling] client count 0 - -2025-09-26 01:23:37,318 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:23:37,726 INFO toNotifyTaskSize = 0 - -2025-09-26 01:23:37,727 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:23:47,319 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:23:47,319 INFO [long-pulling] client count 0 - -2025-09-26 01:23:47,727 INFO toNotifyTaskSize = 0 - -2025-09-26 01:23:47,727 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:23:57,321 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:23:57,321 INFO [long-pulling] client count 0 - -2025-09-26 01:23:57,727 INFO toNotifyTaskSize = 0 - -2025-09-26 01:23:57,727 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:24:07,321 INFO [long-pulling] client count 0 - -2025-09-26 01:24:07,322 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:24:07,728 INFO toNotifyTaskSize = 0 - -2025-09-26 01:24:07,728 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:24:17,322 INFO [long-pulling] client count 0 - -2025-09-26 01:24:17,323 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:24:17,729 INFO toNotifyTaskSize = 0 - -2025-09-26 01:24:17,729 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:24:27,323 INFO [long-pulling] client count 0 - -2025-09-26 01:24:27,324 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:24:27,729 INFO toNotifyTaskSize = 0 - -2025-09-26 01:24:27,729 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:24:37,324 INFO [long-pulling] client count 0 - -2025-09-26 01:24:37,324 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:24:37,730 INFO toNotifyTaskSize = 0 - -2025-09-26 01:24:37,730 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:24:47,324 INFO [long-pulling] client count 0 - -2025-09-26 01:24:47,325 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:24:47,731 INFO toNotifyTaskSize = 0 - -2025-09-26 01:24:47,731 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:24:57,325 INFO [long-pulling] client count 0 - -2025-09-26 01:24:57,325 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:24:57,731 INFO toNotifyTaskSize = 0 - -2025-09-26 01:24:57,732 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:25:07,326 INFO [long-pulling] client count 0 - -2025-09-26 01:25:07,326 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:25:07,732 INFO toNotifyTaskSize = 0 - -2025-09-26 01:25:07,732 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:25:17,327 INFO [long-pulling] client count 0 - -2025-09-26 01:25:17,327 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:25:17,732 INFO toNotifyTaskSize = 0 - -2025-09-26 01:25:17,733 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:25:27,327 INFO [long-pulling] client count 0 - -2025-09-26 01:25:27,328 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:25:27,733 INFO toNotifyTaskSize = 0 - -2025-09-26 01:25:27,733 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:25:37,328 INFO [long-pulling] client count 0 - -2025-09-26 01:25:37,328 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:25:37,734 INFO toNotifyTaskSize = 0 - -2025-09-26 01:25:37,735 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:25:47,329 INFO [long-pulling] client count 0 - -2025-09-26 01:25:47,329 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:25:47,736 INFO toNotifyTaskSize = 0 - -2025-09-26 01:25:47,736 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:25:57,331 INFO [long-pulling] client count 0 - -2025-09-26 01:25:57,330 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:25:57,737 INFO toNotifyTaskSize = 0 - -2025-09-26 01:25:57,737 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:26:07,331 INFO [long-pulling] client count 0 - -2025-09-26 01:26:07,331 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:26:07,738 INFO toNotifyTaskSize = 0 - -2025-09-26 01:26:07,738 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:26:17,333 INFO [long-pulling] client count 0 - -2025-09-26 01:26:17,333 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:26:17,738 INFO toNotifyTaskSize = 0 - -2025-09-26 01:26:17,738 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:26:27,333 INFO [long-pulling] client count 0 - -2025-09-26 01:26:27,333 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:26:27,739 INFO toNotifyTaskSize = 0 - -2025-09-26 01:26:27,740 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:26:37,334 INFO [long-pulling] client count 0 - -2025-09-26 01:26:37,334 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:26:37,740 INFO toNotifyTaskSize = 0 - -2025-09-26 01:26:37,740 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:26:47,334 INFO [long-pulling] client count 0 - -2025-09-26 01:26:47,334 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:26:47,741 INFO toNotifyTaskSize = 0 - -2025-09-26 01:26:47,741 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:26:57,334 INFO [long-pulling] client count 0 - -2025-09-26 01:26:57,334 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:26:57,742 INFO toNotifyTaskSize = 0 - -2025-09-26 01:26:57,742 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:27:07,352 INFO [long-pulling] client count 0 - -2025-09-26 01:27:07,353 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:27:07,742 INFO toNotifyTaskSize = 0 - -2025-09-26 01:27:07,742 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:27:17,353 INFO [long-pulling] client count 0 - -2025-09-26 01:27:17,353 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:27:17,743 INFO toNotifyTaskSize = 0 - -2025-09-26 01:27:17,743 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:27:27,353 INFO [long-pulling] client count 0 - -2025-09-26 01:27:27,354 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:27:27,744 INFO toNotifyTaskSize = 0 - -2025-09-26 01:27:27,744 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:27:37,354 INFO [long-pulling] client count 0 - -2025-09-26 01:27:37,354 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:27:37,744 INFO toNotifyTaskSize = 0 - -2025-09-26 01:27:37,744 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:27:47,354 INFO [long-pulling] client count 0 - -2025-09-26 01:27:47,354 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:27:47,745 INFO toNotifyTaskSize = 0 - -2025-09-26 01:27:47,745 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:27:57,354 INFO [long-pulling] client count 0 - -2025-09-26 01:27:57,354 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:27:57,747 INFO toNotifyTaskSize = 0 - -2025-09-26 01:27:57,747 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:28:07,355 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:28:07,355 INFO [long-pulling] client count 0 - -2025-09-26 01:28:07,747 INFO toNotifyTaskSize = 0 - -2025-09-26 01:28:07,747 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:28:17,361 INFO [long-pulling] client count 0 - -2025-09-26 01:28:17,361 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:28:17,747 INFO toNotifyTaskSize = 0 - -2025-09-26 01:28:17,747 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:28:27,362 INFO [long-pulling] client count 0 - -2025-09-26 01:28:27,362 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:28:27,747 INFO toNotifyTaskSize = 0 - -2025-09-26 01:28:27,748 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:28:37,364 INFO [long-pulling] client count 0 - -2025-09-26 01:28:37,364 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:28:37,748 INFO toNotifyTaskSize = 0 - -2025-09-26 01:28:37,748 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:28:47,365 INFO [long-pulling] client count 0 - -2025-09-26 01:28:47,365 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:28:47,748 INFO toNotifyTaskSize = 0 - -2025-09-26 01:28:47,748 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:28:57,366 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:28:57,366 INFO [long-pulling] client count 0 - -2025-09-26 01:28:57,749 INFO toNotifyTaskSize = 0 - -2025-09-26 01:28:57,749 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:29:07,367 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:29:07,367 INFO [long-pulling] client count 0 - -2025-09-26 01:29:07,749 INFO toNotifyTaskSize = 0 - -2025-09-26 01:29:07,750 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:29:17,368 INFO [long-pulling] client count 0 - -2025-09-26 01:29:17,368 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:29:17,750 INFO toNotifyTaskSize = 0 - -2025-09-26 01:29:17,751 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:29:27,369 INFO [long-pulling] client count 0 - -2025-09-26 01:29:27,369 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:29:27,751 INFO toNotifyTaskSize = 0 - -2025-09-26 01:29:27,751 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:29:37,370 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:29:37,370 INFO [long-pulling] client count 0 - -2025-09-26 01:29:37,752 INFO toNotifyTaskSize = 0 - -2025-09-26 01:29:37,752 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:29:47,372 INFO [long-pulling] client count 0 - -2025-09-26 01:29:47,372 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:29:47,752 INFO toNotifyTaskSize = 0 - -2025-09-26 01:29:47,752 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:29:57,372 INFO [long-pulling] client count 0 - -2025-09-26 01:29:57,372 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:29:57,754 INFO toNotifyTaskSize = 0 - -2025-09-26 01:29:57,754 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:30:07,373 INFO [long-pulling] client count 0 - -2025-09-26 01:30:07,373 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:30:07,755 INFO toNotifyTaskSize = 0 - -2025-09-26 01:30:07,755 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:30:17,373 INFO [long-pulling] client count 0 - -2025-09-26 01:30:17,374 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:30:17,756 INFO toNotifyTaskSize = 0 - -2025-09-26 01:30:17,756 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:30:27,374 INFO [long-pulling] client count 0 - -2025-09-26 01:30:27,375 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:30:27,757 INFO toNotifyTaskSize = 0 - -2025-09-26 01:30:27,757 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:30:37,375 INFO [long-pulling] client count 0 - -2025-09-26 01:30:37,375 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:30:37,757 INFO toNotifyTaskSize = 0 - -2025-09-26 01:30:37,757 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:30:47,376 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:30:47,376 INFO [long-pulling] client count 0 - -2025-09-26 01:30:47,758 INFO toNotifyTaskSize = 0 - -2025-09-26 01:30:47,758 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:30:57,376 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:30:57,376 INFO [long-pulling] client count 0 - -2025-09-26 01:30:57,759 INFO toNotifyTaskSize = 0 - -2025-09-26 01:30:57,760 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:31:07,376 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:31:07,376 INFO [long-pulling] client count 0 - -2025-09-26 01:31:07,761 INFO toNotifyTaskSize = 0 - -2025-09-26 01:31:07,761 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:31:17,377 INFO [long-pulling] client count 0 - -2025-09-26 01:31:17,377 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:31:17,762 INFO toNotifyTaskSize = 0 - -2025-09-26 01:31:17,762 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:31:27,378 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:31:27,378 INFO [long-pulling] client count 0 - -2025-09-26 01:31:27,763 INFO toNotifyTaskSize = 0 - -2025-09-26 01:31:27,763 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:31:37,379 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:31:37,380 INFO [long-pulling] client count 0 - -2025-09-26 01:31:37,764 INFO toNotifyTaskSize = 0 - -2025-09-26 01:31:37,764 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:31:47,381 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:31:47,381 INFO [long-pulling] client count 0 - -2025-09-26 01:31:47,764 INFO toNotifyTaskSize = 0 - -2025-09-26 01:31:47,765 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:31:57,381 INFO [long-pulling] client count 0 - -2025-09-26 01:31:57,381 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:31:57,765 INFO toNotifyTaskSize = 0 - -2025-09-26 01:31:57,766 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:32:07,382 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:32:07,382 INFO [long-pulling] client count 0 - -2025-09-26 01:32:07,767 INFO toNotifyTaskSize = 0 - -2025-09-26 01:32:07,767 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:32:17,383 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:32:17,384 INFO [long-pulling] client count 0 - -2025-09-26 01:32:17,767 INFO toNotifyTaskSize = 0 - -2025-09-26 01:32:17,767 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:32:27,385 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:32:27,385 INFO [long-pulling] client count 0 - -2025-09-26 01:32:27,767 INFO toNotifyTaskSize = 0 - -2025-09-26 01:32:27,768 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:32:37,385 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:32:37,386 INFO [long-pulling] client count 0 - -2025-09-26 01:32:37,769 INFO toNotifyTaskSize = 0 - -2025-09-26 01:32:37,769 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:32:47,386 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:32:47,387 INFO [long-pulling] client count 0 - -2025-09-26 01:32:47,770 INFO toNotifyTaskSize = 0 - -2025-09-26 01:32:47,770 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:32:57,387 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:32:57,388 INFO [long-pulling] client count 0 - -2025-09-26 01:32:57,770 INFO toNotifyTaskSize = 0 - -2025-09-26 01:32:57,771 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:33:07,389 INFO [long-pulling] client count 0 - -2025-09-26 01:33:07,389 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:33:07,771 INFO toNotifyTaskSize = 0 - -2025-09-26 01:33:07,771 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:33:17,391 INFO [long-pulling] client count 0 - -2025-09-26 01:33:17,391 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:33:17,773 INFO toNotifyTaskSize = 0 - -2025-09-26 01:33:17,773 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:33:27,393 INFO [long-pulling] client count 0 - -2025-09-26 01:33:27,393 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:33:27,773 INFO toNotifyTaskSize = 0 - -2025-09-26 01:33:27,773 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:33:37,394 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:33:37,394 INFO [long-pulling] client count 0 - -2025-09-26 01:33:37,774 INFO toNotifyTaskSize = 0 - -2025-09-26 01:33:37,774 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:33:47,395 INFO [long-pulling] client count 0 - -2025-09-26 01:33:47,395 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:33:47,774 INFO toNotifyTaskSize = 0 - -2025-09-26 01:33:47,775 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:33:57,395 INFO [long-pulling] client count 0 - -2025-09-26 01:33:57,395 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:33:57,775 INFO toNotifyTaskSize = 0 - -2025-09-26 01:33:57,775 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:34:07,397 INFO [long-pulling] client count 0 - -2025-09-26 01:34:07,397 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:34:07,776 INFO toNotifyTaskSize = 0 - -2025-09-26 01:34:07,776 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:34:17,398 INFO [long-pulling] client count 0 - -2025-09-26 01:34:17,398 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:34:17,777 INFO toNotifyTaskSize = 0 - -2025-09-26 01:34:17,777 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:34:27,399 INFO [long-pulling] client count 0 - -2025-09-26 01:34:27,399 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:34:27,778 INFO toNotifyTaskSize = 0 - -2025-09-26 01:34:27,778 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:34:37,400 INFO [long-pulling] client count 0 - -2025-09-26 01:34:37,400 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:34:37,780 INFO toNotifyTaskSize = 0 - -2025-09-26 01:34:37,780 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:34:47,400 INFO [long-pulling] client count 0 - -2025-09-26 01:34:47,400 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:34:47,781 INFO toNotifyTaskSize = 0 - -2025-09-26 01:34:47,781 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:34:57,401 INFO [long-pulling] client count 0 - -2025-09-26 01:34:57,401 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:34:57,782 INFO toNotifyTaskSize = 0 - -2025-09-26 01:34:57,782 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:35:07,401 INFO [long-pulling] client count 0 - -2025-09-26 01:35:07,402 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:35:07,782 INFO toNotifyTaskSize = 0 - -2025-09-26 01:35:07,782 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:35:17,402 INFO [long-pulling] client count 0 - -2025-09-26 01:35:17,403 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:35:17,782 INFO toNotifyTaskSize = 0 - -2025-09-26 01:35:17,783 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:35:27,404 INFO [long-pulling] client count 0 - -2025-09-26 01:35:27,404 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:35:27,783 INFO toNotifyTaskSize = 0 - -2025-09-26 01:35:27,784 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:35:37,404 INFO [long-pulling] client count 0 - -2025-09-26 01:35:37,405 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:35:37,784 INFO toNotifyTaskSize = 0 - -2025-09-26 01:35:37,784 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:35:47,406 INFO [long-pulling] client count 0 - -2025-09-26 01:35:47,406 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:35:47,785 INFO toNotifyTaskSize = 0 - -2025-09-26 01:35:47,785 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:35:57,407 INFO [long-pulling] client count 0 - -2025-09-26 01:35:57,407 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:35:57,785 INFO toNotifyTaskSize = 0 - -2025-09-26 01:35:57,785 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:36:07,408 INFO [long-pulling] client count 0 - -2025-09-26 01:36:07,408 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:36:07,788 INFO toNotifyTaskSize = 0 - -2025-09-26 01:36:07,788 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:36:17,409 INFO [long-pulling] client count 0 - -2025-09-26 01:36:17,409 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:36:17,788 INFO toNotifyTaskSize = 0 - -2025-09-26 01:36:17,789 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:36:27,410 INFO [long-pulling] client count 0 - -2025-09-26 01:36:27,410 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:36:27,789 INFO toNotifyTaskSize = 0 - -2025-09-26 01:36:27,790 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:36:37,411 INFO [long-pulling] client count 0 - -2025-09-26 01:36:37,411 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:36:37,790 INFO toNotifyTaskSize = 0 - -2025-09-26 01:36:37,791 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:36:47,411 INFO [long-pulling] client count 0 - -2025-09-26 01:36:47,411 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:36:47,792 INFO toNotifyTaskSize = 0 - -2025-09-26 01:36:47,792 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:36:57,412 INFO [long-pulling] client count 0 - -2025-09-26 01:36:57,412 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:36:57,792 INFO toNotifyTaskSize = 0 - -2025-09-26 01:36:57,793 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:37:07,415 INFO [long-pulling] client count 0 - -2025-09-26 01:37:07,416 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:37:07,793 INFO toNotifyTaskSize = 0 - -2025-09-26 01:37:07,793 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:37:17,416 INFO [long-pulling] client count 0 - -2025-09-26 01:37:17,416 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:37:17,793 INFO toNotifyTaskSize = 0 - -2025-09-26 01:37:17,794 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:37:27,416 INFO [long-pulling] client count 0 - -2025-09-26 01:37:27,417 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:37:27,794 INFO toNotifyTaskSize = 0 - -2025-09-26 01:37:27,795 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:37:37,417 INFO [long-pulling] client count 0 - -2025-09-26 01:37:37,417 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:37:37,795 INFO toNotifyTaskSize = 0 - -2025-09-26 01:37:37,795 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:37:47,418 INFO [long-pulling] client count 0 - -2025-09-26 01:37:47,418 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:37:47,796 INFO toNotifyTaskSize = 0 - -2025-09-26 01:37:47,796 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:37:57,419 INFO [long-pulling] client count 0 - -2025-09-26 01:37:57,419 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:37:57,797 INFO toNotifyTaskSize = 0 - -2025-09-26 01:37:57,797 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:38:07,420 INFO [long-pulling] client count 0 - -2025-09-26 01:38:07,420 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:38:07,797 INFO toNotifyTaskSize = 0 - -2025-09-26 01:38:07,797 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:38:17,422 INFO [long-pulling] client count 0 - -2025-09-26 01:38:17,423 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:38:17,798 INFO toNotifyTaskSize = 0 - -2025-09-26 01:38:17,798 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:38:27,423 INFO [long-pulling] client count 0 - -2025-09-26 01:38:27,425 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:38:27,798 INFO toNotifyTaskSize = 0 - -2025-09-26 01:38:27,799 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:38:37,426 INFO [long-pulling] client count 0 - -2025-09-26 01:38:37,426 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:38:37,799 INFO toNotifyTaskSize = 0 - -2025-09-26 01:38:37,799 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:38:47,426 INFO [long-pulling] client count 0 - -2025-09-26 01:38:47,426 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:38:47,799 INFO toNotifyTaskSize = 0 - -2025-09-26 01:38:47,799 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:38:57,427 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:38:57,429 INFO [long-pulling] client count 0 - -2025-09-26 01:38:57,800 INFO toNotifyTaskSize = 0 - -2025-09-26 01:38:57,800 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:39:07,429 INFO [long-pulling] client count 0 - -2025-09-26 01:39:07,429 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:39:07,800 INFO toNotifyTaskSize = 0 - -2025-09-26 01:39:07,800 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:39:17,430 INFO [long-pulling] client count 0 - -2025-09-26 01:39:17,430 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:39:17,801 INFO toNotifyTaskSize = 0 - -2025-09-26 01:39:17,801 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:39:27,430 INFO [long-pulling] client count 0 - -2025-09-26 01:39:27,431 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:39:27,801 INFO toNotifyTaskSize = 0 - -2025-09-26 01:39:27,802 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:39:37,432 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:39:37,432 INFO [long-pulling] client count 0 - -2025-09-26 01:39:37,803 INFO toNotifyTaskSize = 0 - -2025-09-26 01:39:37,803 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:39:47,433 INFO [long-pulling] client count 0 - -2025-09-26 01:39:47,433 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:39:47,803 INFO toNotifyTaskSize = 0 - -2025-09-26 01:39:47,803 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:39:57,434 INFO [long-pulling] client count 0 - -2025-09-26 01:39:57,434 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:39:57,803 INFO toNotifyTaskSize = 0 - -2025-09-26 01:39:57,803 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:40:07,435 INFO [long-pulling] client count 0 - -2025-09-26 01:40:07,435 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:40:07,804 INFO toNotifyTaskSize = 0 - -2025-09-26 01:40:07,804 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:40:17,436 INFO [long-pulling] client count 0 - -2025-09-26 01:40:17,436 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:40:17,804 INFO toNotifyTaskSize = 0 - -2025-09-26 01:40:17,804 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:40:27,437 INFO [long-pulling] client count 0 - -2025-09-26 01:40:27,437 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:40:27,805 INFO toNotifyTaskSize = 0 - -2025-09-26 01:40:27,805 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:40:37,437 INFO [long-pulling] client count 0 - -2025-09-26 01:40:37,437 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:40:37,805 INFO toNotifyTaskSize = 0 - -2025-09-26 01:40:37,805 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:40:47,437 INFO [long-pulling] client count 0 - -2025-09-26 01:40:47,437 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:40:47,805 INFO toNotifyTaskSize = 0 - -2025-09-26 01:40:47,805 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:40:57,439 INFO [long-pulling] client count 0 - -2025-09-26 01:40:57,439 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:40:57,806 INFO toNotifyTaskSize = 0 - -2025-09-26 01:40:57,806 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:41:07,440 INFO [long-pulling] client count 0 - -2025-09-26 01:41:07,440 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:41:07,807 INFO toNotifyTaskSize = 0 - -2025-09-26 01:41:07,807 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:41:17,440 INFO [long-pulling] client count 0 - -2025-09-26 01:41:17,440 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:41:17,807 INFO toNotifyTaskSize = 0 - -2025-09-26 01:41:17,807 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:41:27,441 INFO [long-pulling] client count 0 - -2025-09-26 01:41:27,441 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:41:27,808 INFO toNotifyTaskSize = 0 - -2025-09-26 01:41:27,808 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:41:37,441 INFO [long-pulling] client count 0 - -2025-09-26 01:41:37,442 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:41:37,809 INFO toNotifyTaskSize = 0 - -2025-09-26 01:41:37,809 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:41:47,442 INFO [long-pulling] client count 0 - -2025-09-26 01:41:47,442 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:41:47,810 INFO toNotifyTaskSize = 0 - -2025-09-26 01:41:47,810 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:41:57,443 INFO [long-pulling] client count 0 - -2025-09-26 01:41:57,443 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:41:57,811 INFO toNotifyTaskSize = 0 - -2025-09-26 01:41:57,811 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:42:07,443 INFO [long-pulling] client count 0 - -2025-09-26 01:42:07,444 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:42:07,811 INFO toNotifyTaskSize = 0 - -2025-09-26 01:42:07,811 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:42:17,444 INFO [long-pulling] client count 0 - -2025-09-26 01:42:17,444 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:42:17,812 INFO toNotifyTaskSize = 0 - -2025-09-26 01:42:17,812 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:42:27,444 INFO [long-pulling] client count 0 - -2025-09-26 01:42:27,445 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:42:27,813 INFO toNotifyTaskSize = 0 - -2025-09-26 01:42:27,813 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:42:37,445 INFO [long-pulling] client count 0 - -2025-09-26 01:42:37,445 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:42:37,813 INFO toNotifyTaskSize = 0 - -2025-09-26 01:42:37,813 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:42:47,445 INFO [long-pulling] client count 0 - -2025-09-26 01:42:47,445 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:42:47,814 INFO toNotifyTaskSize = 0 - -2025-09-26 01:42:47,814 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:42:57,446 INFO [long-pulling] client count 0 - -2025-09-26 01:42:57,446 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:42:57,815 INFO toNotifyTaskSize = 0 - -2025-09-26 01:42:57,815 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:43:07,447 INFO [long-pulling] client count 0 - -2025-09-26 01:43:07,447 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:43:07,815 INFO toNotifyTaskSize = 0 - -2025-09-26 01:43:07,815 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:43:17,449 INFO [long-pulling] client count 0 - -2025-09-26 01:43:17,449 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:43:17,816 INFO toNotifyTaskSize = 0 - -2025-09-26 01:43:17,816 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:43:27,450 INFO [long-pulling] client count 0 - -2025-09-26 01:43:27,450 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:43:27,817 INFO toNotifyTaskSize = 0 - -2025-09-26 01:43:27,817 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:43:37,452 INFO [long-pulling] client count 0 - -2025-09-26 01:43:37,452 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:43:37,817 INFO toNotifyTaskSize = 0 - -2025-09-26 01:43:37,817 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:43:47,452 INFO [long-pulling] client count 0 - -2025-09-26 01:43:47,453 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:43:47,818 INFO toNotifyTaskSize = 0 - -2025-09-26 01:43:47,818 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:43:57,453 INFO [long-pulling] client count 0 - -2025-09-26 01:43:57,453 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:43:57,818 INFO toNotifyTaskSize = 0 - -2025-09-26 01:43:57,818 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:44:07,455 INFO [long-pulling] client count 0 - -2025-09-26 01:44:07,455 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:44:07,819 INFO toNotifyTaskSize = 0 - -2025-09-26 01:44:07,819 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:44:17,455 INFO [long-pulling] client count 0 - -2025-09-26 01:44:17,455 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:44:17,819 INFO toNotifyTaskSize = 0 - -2025-09-26 01:44:17,819 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:44:27,455 INFO [long-pulling] client count 0 - -2025-09-26 01:44:27,455 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:44:27,820 INFO toNotifyTaskSize = 0 - -2025-09-26 01:44:27,820 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:44:37,457 INFO [long-pulling] client count 0 - -2025-09-26 01:44:37,457 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:44:37,821 INFO toNotifyTaskSize = 0 - -2025-09-26 01:44:37,821 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:44:47,457 INFO [long-pulling] client count 0 - -2025-09-26 01:44:47,457 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:44:47,822 INFO toNotifyTaskSize = 0 - -2025-09-26 01:44:47,822 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:44:57,458 INFO [long-pulling] client count 0 - -2025-09-26 01:44:57,458 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:44:57,822 INFO toNotifyTaskSize = 0 - -2025-09-26 01:44:57,822 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:45:07,459 INFO [long-pulling] client count 0 - -2025-09-26 01:45:07,459 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:45:07,823 INFO toNotifyTaskSize = 0 - -2025-09-26 01:45:07,823 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:45:17,460 INFO [long-pulling] client count 0 - -2025-09-26 01:45:17,460 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:45:17,824 INFO toNotifyTaskSize = 0 - -2025-09-26 01:45:17,824 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:45:27,460 INFO [long-pulling] client count 0 - -2025-09-26 01:45:27,461 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:45:27,826 INFO toNotifyTaskSize = 0 - -2025-09-26 01:45:27,826 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:45:37,461 INFO [long-pulling] client count 0 - -2025-09-26 01:45:37,461 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:45:37,826 INFO toNotifyTaskSize = 0 - -2025-09-26 01:45:37,826 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:45:47,462 INFO [long-pulling] client count 0 - -2025-09-26 01:45:47,462 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:45:47,827 INFO toNotifyTaskSize = 0 - -2025-09-26 01:45:47,827 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:45:57,463 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:45:57,463 INFO [long-pulling] client count 0 - -2025-09-26 01:45:57,827 INFO toNotifyTaskSize = 0 - -2025-09-26 01:45:57,828 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:46:07,465 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:46:07,465 INFO [long-pulling] client count 0 - -2025-09-26 01:46:07,828 INFO toNotifyTaskSize = 0 - -2025-09-26 01:46:07,828 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:46:17,465 INFO [long-pulling] client count 0 - -2025-09-26 01:46:17,465 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:46:17,828 INFO toNotifyTaskSize = 0 - -2025-09-26 01:46:17,828 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:46:27,466 INFO [long-pulling] client count 0 - -2025-09-26 01:46:27,466 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:46:27,829 INFO toNotifyTaskSize = 0 - -2025-09-26 01:46:27,829 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:46:37,468 INFO [long-pulling] client count 0 - -2025-09-26 01:46:37,468 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:46:37,829 INFO toNotifyTaskSize = 0 - -2025-09-26 01:46:37,829 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:46:47,469 INFO [long-pulling] client count 0 - -2025-09-26 01:46:47,469 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:46:47,830 INFO toNotifyTaskSize = 0 - -2025-09-26 01:46:47,830 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:46:57,470 INFO [long-pulling] client count 0 - -2025-09-26 01:46:57,470 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:46:57,830 INFO toNotifyTaskSize = 0 - -2025-09-26 01:46:57,830 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:47:07,471 INFO [long-pulling] client count 0 - -2025-09-26 01:47:07,471 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:47:07,830 INFO toNotifyTaskSize = 0 - -2025-09-26 01:47:07,830 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:47:17,472 INFO [long-pulling] client count 0 - -2025-09-26 01:47:17,472 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:47:17,831 INFO toNotifyTaskSize = 0 - -2025-09-26 01:47:17,831 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:47:27,472 INFO [long-pulling] client count 0 - -2025-09-26 01:47:27,472 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:47:27,831 INFO toNotifyTaskSize = 0 - -2025-09-26 01:47:27,832 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:47:37,473 INFO [long-pulling] client count 0 - -2025-09-26 01:47:37,473 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:47:37,832 INFO toNotifyTaskSize = 0 - -2025-09-26 01:47:37,832 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:47:47,474 INFO [long-pulling] client count 0 - -2025-09-26 01:47:47,475 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:47:47,832 INFO toNotifyTaskSize = 0 - -2025-09-26 01:47:47,832 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:47:57,475 INFO [long-pulling] client count 0 - -2025-09-26 01:47:57,475 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:47:57,833 INFO toNotifyTaskSize = 0 - -2025-09-26 01:47:57,833 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:48:07,475 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:48:07,475 INFO [long-pulling] client count 0 - -2025-09-26 01:48:07,833 INFO toNotifyTaskSize = 0 - -2025-09-26 01:48:07,833 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:48:17,476 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:48:17,476 INFO [long-pulling] client count 0 - -2025-09-26 01:48:17,834 INFO toNotifyTaskSize = 0 - -2025-09-26 01:48:17,834 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:48:27,476 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:48:27,476 INFO [long-pulling] client count 0 - -2025-09-26 01:48:27,835 INFO toNotifyTaskSize = 0 - -2025-09-26 01:48:27,836 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:48:37,476 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:48:37,477 INFO [long-pulling] client count 0 - -2025-09-26 01:48:37,837 INFO toNotifyTaskSize = 0 - -2025-09-26 01:48:37,837 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:48:47,477 INFO [long-pulling] client count 0 - -2025-09-26 01:48:47,477 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:48:47,838 INFO toNotifyTaskSize = 0 - -2025-09-26 01:48:47,838 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:48:57,478 INFO [long-pulling] client count 0 - -2025-09-26 01:48:57,478 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:48:57,838 INFO toNotifyTaskSize = 0 - -2025-09-26 01:48:57,839 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:49:07,478 INFO [long-pulling] client count 0 - -2025-09-26 01:49:07,478 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:49:07,840 INFO toNotifyTaskSize = 0 - -2025-09-26 01:49:07,840 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:49:17,479 INFO [long-pulling] client count 0 - -2025-09-26 01:49:17,479 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:49:17,841 INFO toNotifyTaskSize = 0 - -2025-09-26 01:49:17,841 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:49:27,479 INFO [long-pulling] client count 0 - -2025-09-26 01:49:27,479 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:49:27,842 INFO toNotifyTaskSize = 0 - -2025-09-26 01:49:27,843 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:49:37,480 INFO [long-pulling] client count 0 - -2025-09-26 01:49:37,480 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:49:37,843 INFO toNotifyTaskSize = 0 - -2025-09-26 01:49:37,843 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:49:47,481 INFO [long-pulling] client count 0 - -2025-09-26 01:49:47,481 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:49:47,844 INFO toNotifyTaskSize = 0 - -2025-09-26 01:49:47,844 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:49:57,482 INFO [long-pulling] client count 0 - -2025-09-26 01:49:57,482 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:49:57,846 INFO toNotifyTaskSize = 0 - -2025-09-26 01:49:57,847 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:50:07,483 INFO [long-pulling] client count 0 - -2025-09-26 01:50:07,483 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:50:07,847 INFO toNotifyTaskSize = 0 - -2025-09-26 01:50:07,847 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:50:17,484 INFO [long-pulling] client count 0 - -2025-09-26 01:50:17,484 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:50:17,847 INFO toNotifyTaskSize = 0 - -2025-09-26 01:50:17,847 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:50:27,485 INFO [long-pulling] client count 0 - -2025-09-26 01:50:27,485 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:50:27,848 INFO toNotifyTaskSize = 0 - -2025-09-26 01:50:27,848 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:50:37,485 INFO [long-pulling] client count 0 - -2025-09-26 01:50:37,485 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:50:37,848 INFO toNotifyTaskSize = 0 - -2025-09-26 01:50:37,849 INFO toClientNotifyTaskSize = 0 - -2025-09-26 01:50:47,487 INFO groupCount = 2, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-26 01:50:47,487 INFO [long-pulling] client count 0 - -2025-09-26 01:50:47,849 INFO toNotifyTaskSize = 0 - -2025-09-26 01:50:47,849 INFO toClientNotifyTaskSize = 0 - diff --git a/docker/nacos/standalone-logs/config-memory.log.2025-09-22.0 b/docker/nacos/standalone-logs/config-memory.log.2025-09-22.0 deleted file mode 100644 index 37b4c04..0000000 --- a/docker/nacos/standalone-logs/config-memory.log.2025-09-22.0 +++ /dev/null @@ -1,3380 +0,0 @@ -2025-09-22 01:17:08,025 INFO [long-pulling] client count 0 - -2025-09-22 01:17:18,058 INFO [long-pulling] client count 0 - -2025-09-22 01:17:18,432 INFO toNotifyTaskSize = 0 - -2025-09-22 01:17:18,433 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:17:18,435 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:17:28,059 INFO [long-pulling] client count 0 - -2025-09-22 01:17:28,434 INFO toNotifyTaskSize = 0 - -2025-09-22 01:17:28,434 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:17:28,436 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:17:38,060 INFO [long-pulling] client count 0 - -2025-09-22 01:17:38,435 INFO toNotifyTaskSize = 0 - -2025-09-22 01:17:38,436 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:17:38,436 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:17:48,061 INFO [long-pulling] client count 0 - -2025-09-22 01:17:48,436 INFO toNotifyTaskSize = 0 - -2025-09-22 01:17:48,437 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:17:48,437 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:17:58,066 INFO [long-pulling] client count 0 - -2025-09-22 01:17:58,437 INFO toNotifyTaskSize = 0 - -2025-09-22 01:17:58,437 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:17:58,437 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:08,066 INFO [long-pulling] client count 0 - -2025-09-22 01:18:08,438 INFO toNotifyTaskSize = 0 - -2025-09-22 01:18:08,438 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:18:08,438 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:18,067 INFO [long-pulling] client count 0 - -2025-09-22 01:18:18,439 INFO toNotifyTaskSize = 0 - -2025-09-22 01:18:18,439 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:18:18,440 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:28,067 INFO [long-pulling] client count 0 - -2025-09-22 01:18:28,441 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:28,441 INFO toNotifyTaskSize = 0 - -2025-09-22 01:18:28,442 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:18:38,068 INFO [long-pulling] client count 0 - -2025-09-22 01:18:38,443 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:38,443 INFO toNotifyTaskSize = 0 - -2025-09-22 01:18:38,443 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:18:48,068 INFO [long-pulling] client count 0 - -2025-09-22 01:18:48,444 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:48,444 INFO toNotifyTaskSize = 0 - -2025-09-22 01:18:48,444 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:18:58,069 INFO [long-pulling] client count 0 - -2025-09-22 01:18:58,445 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:18:58,445 INFO toNotifyTaskSize = 0 - -2025-09-22 01:18:58,446 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:19:08,070 INFO [long-pulling] client count 0 - -2025-09-22 01:19:08,446 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:19:08,446 INFO toNotifyTaskSize = 0 - -2025-09-22 01:19:08,446 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:19:18,071 INFO [long-pulling] client count 0 - -2025-09-22 01:19:18,446 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:19:18,446 INFO toNotifyTaskSize = 0 - -2025-09-22 01:19:18,446 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:19:28,107 INFO [long-pulling] client count 0 - -2025-09-22 01:19:28,447 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:19:28,447 INFO toNotifyTaskSize = 0 - -2025-09-22 01:19:28,448 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:19:38,108 INFO [long-pulling] client count 0 - -2025-09-22 01:19:38,448 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:19:38,448 INFO toNotifyTaskSize = 0 - -2025-09-22 01:19:38,448 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:19:48,109 INFO [long-pulling] client count 0 - -2025-09-22 01:19:48,449 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:19:48,450 INFO toNotifyTaskSize = 0 - -2025-09-22 01:19:48,450 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:19:58,109 INFO [long-pulling] client count 0 - -2025-09-22 01:19:58,450 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:19:58,450 INFO toNotifyTaskSize = 0 - -2025-09-22 01:19:58,451 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:20:08,110 INFO [long-pulling] client count 0 - -2025-09-22 01:20:08,451 INFO toNotifyTaskSize = 0 - -2025-09-22 01:20:08,451 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:20:08,451 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:20:18,111 INFO [long-pulling] client count 0 - -2025-09-22 01:20:18,452 INFO toNotifyTaskSize = 0 - -2025-09-22 01:20:18,452 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:20:18,452 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:20:28,111 INFO [long-pulling] client count 0 - -2025-09-22 01:20:28,454 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:20:28,454 INFO toNotifyTaskSize = 0 - -2025-09-22 01:20:28,454 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:20:38,112 INFO [long-pulling] client count 0 - -2025-09-22 01:20:38,455 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:20:38,455 INFO toNotifyTaskSize = 0 - -2025-09-22 01:20:38,455 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:20:48,113 INFO [long-pulling] client count 0 - -2025-09-22 01:20:48,456 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:20:48,456 INFO toNotifyTaskSize = 0 - -2025-09-22 01:20:48,456 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:20:58,114 INFO [long-pulling] client count 0 - -2025-09-22 01:20:58,456 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:20:58,456 INFO toNotifyTaskSize = 0 - -2025-09-22 01:20:58,456 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:08,115 INFO [long-pulling] client count 0 - -2025-09-22 01:21:08,456 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:21:08,457 INFO toNotifyTaskSize = 0 - -2025-09-22 01:21:08,457 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:18,116 INFO [long-pulling] client count 0 - -2025-09-22 01:21:18,457 INFO toNotifyTaskSize = 0 - -2025-09-22 01:21:18,457 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:18,457 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:21:28,116 INFO [long-pulling] client count 0 - -2025-09-22 01:21:28,458 INFO toNotifyTaskSize = 0 - -2025-09-22 01:21:28,458 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:28,458 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:21:38,117 INFO [long-pulling] client count 0 - -2025-09-22 01:21:38,458 INFO toNotifyTaskSize = 0 - -2025-09-22 01:21:38,458 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:38,458 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:21:48,118 INFO [long-pulling] client count 0 - -2025-09-22 01:21:48,459 INFO toNotifyTaskSize = 0 - -2025-09-22 01:21:48,459 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:48,459 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:21:58,119 INFO [long-pulling] client count 0 - -2025-09-22 01:21:58,461 INFO toNotifyTaskSize = 0 - -2025-09-22 01:21:58,461 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:21:58,461 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:08,120 INFO [long-pulling] client count 0 - -2025-09-22 01:22:08,461 INFO toNotifyTaskSize = 0 - -2025-09-22 01:22:08,461 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:22:08,462 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:18,121 INFO [long-pulling] client count 0 - -2025-09-22 01:22:18,462 INFO toNotifyTaskSize = 0 - -2025-09-22 01:22:18,462 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:22:18,462 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:28,123 INFO [long-pulling] client count 0 - -2025-09-22 01:22:28,463 INFO toNotifyTaskSize = 0 - -2025-09-22 01:22:28,463 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:28,463 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:22:38,123 INFO [long-pulling] client count 0 - -2025-09-22 01:22:38,464 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:38,464 INFO toNotifyTaskSize = 0 - -2025-09-22 01:22:38,464 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:22:48,124 INFO [long-pulling] client count 0 - -2025-09-22 01:22:48,465 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:48,465 INFO toNotifyTaskSize = 0 - -2025-09-22 01:22:48,465 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:22:58,124 INFO [long-pulling] client count 0 - -2025-09-22 01:22:58,465 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:22:58,465 INFO toNotifyTaskSize = 0 - -2025-09-22 01:22:58,465 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:23:08,125 INFO [long-pulling] client count 0 - -2025-09-22 01:23:08,465 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:23:08,466 INFO toNotifyTaskSize = 0 - -2025-09-22 01:23:08,466 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:23:18,126 INFO [long-pulling] client count 0 - -2025-09-22 01:23:18,466 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:23:18,466 INFO toNotifyTaskSize = 0 - -2025-09-22 01:23:18,466 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:23:28,126 INFO [long-pulling] client count 0 - -2025-09-22 01:23:28,467 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:23:28,467 INFO toNotifyTaskSize = 0 - -2025-09-22 01:23:28,467 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:23:38,127 INFO [long-pulling] client count 0 - -2025-09-22 01:23:38,467 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:23:38,468 INFO toNotifyTaskSize = 0 - -2025-09-22 01:23:38,468 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:23:48,128 INFO [long-pulling] client count 0 - -2025-09-22 01:23:48,468 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:23:48,468 INFO toNotifyTaskSize = 0 - -2025-09-22 01:23:48,468 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:23:58,128 INFO [long-pulling] client count 0 - -2025-09-22 01:23:58,468 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:23:58,469 INFO toNotifyTaskSize = 0 - -2025-09-22 01:23:58,469 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:24:08,129 INFO [long-pulling] client count 0 - -2025-09-22 01:24:08,469 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:24:08,470 INFO toNotifyTaskSize = 0 - -2025-09-22 01:24:08,470 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:24:18,130 INFO [long-pulling] client count 0 - -2025-09-22 01:24:18,470 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:24:18,470 INFO toNotifyTaskSize = 0 - -2025-09-22 01:24:18,471 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:24:28,163 INFO [long-pulling] client count 0 - -2025-09-22 01:24:28,471 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:24:28,471 INFO toNotifyTaskSize = 0 - -2025-09-22 01:24:28,471 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:24:38,164 INFO [long-pulling] client count 0 - -2025-09-22 01:24:38,471 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:24:38,471 INFO toNotifyTaskSize = 0 - -2025-09-22 01:24:38,471 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:24:48,166 INFO [long-pulling] client count 0 - -2025-09-22 01:24:48,471 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:24:48,471 INFO toNotifyTaskSize = 0 - -2025-09-22 01:24:48,472 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:24:58,166 INFO [long-pulling] client count 0 - -2025-09-22 01:24:58,473 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:24:58,473 INFO toNotifyTaskSize = 0 - -2025-09-22 01:24:58,473 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:25:08,168 INFO [long-pulling] client count 0 - -2025-09-22 01:25:08,474 INFO toNotifyTaskSize = 0 - -2025-09-22 01:25:08,474 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:25:08,474 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:25:18,168 INFO [long-pulling] client count 0 - -2025-09-22 01:25:18,475 INFO toNotifyTaskSize = 0 - -2025-09-22 01:25:18,475 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:25:18,475 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:25:28,170 INFO [long-pulling] client count 0 - -2025-09-22 01:25:28,476 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:25:28,476 INFO toNotifyTaskSize = 0 - -2025-09-22 01:25:28,476 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:25:38,170 INFO [long-pulling] client count 0 - -2025-09-22 01:25:38,478 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:25:38,478 INFO toNotifyTaskSize = 0 - -2025-09-22 01:25:38,478 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:25:48,172 INFO [long-pulling] client count 0 - -2025-09-22 01:25:48,478 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:25:48,478 INFO toNotifyTaskSize = 0 - -2025-09-22 01:25:48,479 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:25:58,173 INFO [long-pulling] client count 0 - -2025-09-22 01:25:58,480 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:25:58,480 INFO toNotifyTaskSize = 0 - -2025-09-22 01:25:58,480 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:26:08,174 INFO [long-pulling] client count 0 - -2025-09-22 01:26:08,480 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:26:08,480 INFO toNotifyTaskSize = 0 - -2025-09-22 01:26:08,480 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:26:18,174 INFO [long-pulling] client count 0 - -2025-09-22 01:26:18,481 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:26:18,481 INFO toNotifyTaskSize = 0 - -2025-09-22 01:26:18,482 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:26:28,176 INFO [long-pulling] client count 0 - -2025-09-22 01:26:28,483 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:26:28,483 INFO toNotifyTaskSize = 0 - -2025-09-22 01:26:28,483 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:26:38,176 INFO [long-pulling] client count 0 - -2025-09-22 01:26:38,483 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:26:38,483 INFO toNotifyTaskSize = 0 - -2025-09-22 01:26:38,483 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:26:48,177 INFO [long-pulling] client count 0 - -2025-09-22 01:26:48,484 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:26:48,484 INFO toNotifyTaskSize = 0 - -2025-09-22 01:26:48,484 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:26:58,177 INFO [long-pulling] client count 0 - -2025-09-22 01:26:58,484 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:26:58,484 INFO toNotifyTaskSize = 0 - -2025-09-22 01:26:58,484 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:27:08,178 INFO [long-pulling] client count 0 - -2025-09-22 01:27:08,485 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:27:08,485 INFO toNotifyTaskSize = 0 - -2025-09-22 01:27:08,485 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:27:18,179 INFO [long-pulling] client count 0 - -2025-09-22 01:27:18,486 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:27:18,486 INFO toNotifyTaskSize = 0 - -2025-09-22 01:27:18,486 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:27:28,180 INFO [long-pulling] client count 0 - -2025-09-22 01:27:28,487 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:27:28,488 INFO toNotifyTaskSize = 0 - -2025-09-22 01:27:28,488 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:27:38,180 INFO [long-pulling] client count 0 - -2025-09-22 01:27:38,488 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:27:38,489 INFO toNotifyTaskSize = 0 - -2025-09-22 01:27:38,489 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:27:48,181 INFO [long-pulling] client count 0 - -2025-09-22 01:27:48,490 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:27:48,490 INFO toNotifyTaskSize = 0 - -2025-09-22 01:27:48,490 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:27:58,182 INFO [long-pulling] client count 0 - -2025-09-22 01:27:58,491 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:27:58,491 INFO toNotifyTaskSize = 0 - -2025-09-22 01:27:58,492 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:28:08,182 INFO [long-pulling] client count 0 - -2025-09-22 01:28:08,492 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:28:08,492 INFO toNotifyTaskSize = 0 - -2025-09-22 01:28:08,493 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:28:18,183 INFO [long-pulling] client count 0 - -2025-09-22 01:28:18,493 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:28:18,494 INFO toNotifyTaskSize = 0 - -2025-09-22 01:28:18,494 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:28:28,183 INFO [long-pulling] client count 0 - -2025-09-22 01:28:28,495 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:28:28,495 INFO toNotifyTaskSize = 0 - -2025-09-22 01:28:28,496 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:28:38,184 INFO [long-pulling] client count 0 - -2025-09-22 01:28:38,496 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:28:38,496 INFO toNotifyTaskSize = 0 - -2025-09-22 01:28:38,496 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:28:48,184 INFO [long-pulling] client count 0 - -2025-09-22 01:28:48,497 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:28:48,497 INFO toNotifyTaskSize = 0 - -2025-09-22 01:28:48,497 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:28:58,185 INFO [long-pulling] client count 0 - -2025-09-22 01:28:58,498 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:28:58,498 INFO toNotifyTaskSize = 0 - -2025-09-22 01:28:58,498 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:29:08,186 INFO [long-pulling] client count 0 - -2025-09-22 01:29:08,499 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:29:08,501 INFO toNotifyTaskSize = 0 - -2025-09-22 01:29:08,519 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:29:18,187 INFO [long-pulling] client count 0 - -2025-09-22 01:29:18,520 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:29:18,541 INFO toNotifyTaskSize = 0 - -2025-09-22 01:29:18,541 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:29:28,189 INFO [long-pulling] client count 0 - -2025-09-22 01:29:28,521 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:29:28,542 INFO toNotifyTaskSize = 0 - -2025-09-22 01:29:28,542 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:29:38,189 INFO [long-pulling] client count 0 - -2025-09-22 01:29:38,521 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:29:38,543 INFO toNotifyTaskSize = 0 - -2025-09-22 01:29:38,543 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:29:48,191 INFO [long-pulling] client count 0 - -2025-09-22 01:29:48,523 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:29:48,544 INFO toNotifyTaskSize = 0 - -2025-09-22 01:29:48,544 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:29:58,192 INFO [long-pulling] client count 0 - -2025-09-22 01:29:58,524 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:29:58,545 INFO toNotifyTaskSize = 0 - -2025-09-22 01:29:58,545 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:30:08,193 INFO [long-pulling] client count 0 - -2025-09-22 01:30:08,525 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:30:08,546 INFO toNotifyTaskSize = 0 - -2025-09-22 01:30:08,546 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:30:18,193 INFO [long-pulling] client count 0 - -2025-09-22 01:30:18,525 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:30:18,547 INFO toNotifyTaskSize = 0 - -2025-09-22 01:30:18,547 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:30:28,195 INFO [long-pulling] client count 0 - -2025-09-22 01:30:28,526 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:30:28,549 INFO toNotifyTaskSize = 0 - -2025-09-22 01:30:28,549 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:30:38,196 INFO [long-pulling] client count 0 - -2025-09-22 01:30:38,527 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:30:38,550 INFO toNotifyTaskSize = 0 - -2025-09-22 01:30:38,551 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:30:48,196 INFO [long-pulling] client count 0 - -2025-09-22 01:30:48,529 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:30:48,551 INFO toNotifyTaskSize = 0 - -2025-09-22 01:30:48,551 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:30:58,197 INFO [long-pulling] client count 0 - -2025-09-22 01:30:58,530 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:30:58,552 INFO toNotifyTaskSize = 0 - -2025-09-22 01:30:58,552 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:31:08,199 INFO [long-pulling] client count 0 - -2025-09-22 01:31:08,531 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:31:08,553 INFO toNotifyTaskSize = 0 - -2025-09-22 01:31:08,553 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:31:18,199 INFO [long-pulling] client count 0 - -2025-09-22 01:31:18,532 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:31:18,554 INFO toNotifyTaskSize = 0 - -2025-09-22 01:31:18,554 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:31:28,200 INFO [long-pulling] client count 0 - -2025-09-22 01:31:28,533 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:31:28,555 INFO toNotifyTaskSize = 0 - -2025-09-22 01:31:28,555 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:31:38,202 INFO [long-pulling] client count 0 - -2025-09-22 01:31:38,534 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:31:38,556 INFO toNotifyTaskSize = 0 - -2025-09-22 01:31:38,556 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:31:48,203 INFO [long-pulling] client count 0 - -2025-09-22 01:31:48,534 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:31:48,557 INFO toNotifyTaskSize = 0 - -2025-09-22 01:31:48,557 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:31:58,204 INFO [long-pulling] client count 0 - -2025-09-22 01:31:58,535 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:31:58,557 INFO toNotifyTaskSize = 0 - -2025-09-22 01:31:58,557 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:32:08,205 INFO [long-pulling] client count 0 - -2025-09-22 01:32:08,535 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:32:08,559 INFO toNotifyTaskSize = 0 - -2025-09-22 01:32:08,559 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:32:18,205 INFO [long-pulling] client count 0 - -2025-09-22 01:32:18,537 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:32:18,560 INFO toNotifyTaskSize = 0 - -2025-09-22 01:32:18,560 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:32:28,207 INFO [long-pulling] client count 0 - -2025-09-22 01:32:28,538 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:32:28,561 INFO toNotifyTaskSize = 0 - -2025-09-22 01:32:28,561 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:32:38,208 INFO [long-pulling] client count 0 - -2025-09-22 01:32:38,539 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:32:38,562 INFO toNotifyTaskSize = 0 - -2025-09-22 01:32:38,562 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:32:48,209 INFO [long-pulling] client count 0 - -2025-09-22 01:32:48,539 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:32:48,564 INFO toNotifyTaskSize = 0 - -2025-09-22 01:32:48,564 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:32:58,210 INFO [long-pulling] client count 0 - -2025-09-22 01:32:58,540 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:32:58,564 INFO toNotifyTaskSize = 0 - -2025-09-22 01:32:58,564 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:33:08,210 INFO [long-pulling] client count 0 - -2025-09-22 01:33:08,541 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:33:08,565 INFO toNotifyTaskSize = 0 - -2025-09-22 01:33:08,565 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:33:18,212 INFO [long-pulling] client count 0 - -2025-09-22 01:33:18,541 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:33:18,566 INFO toNotifyTaskSize = 0 - -2025-09-22 01:33:18,567 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:33:28,214 INFO [long-pulling] client count 0 - -2025-09-22 01:33:28,542 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:33:28,567 INFO toNotifyTaskSize = 0 - -2025-09-22 01:33:28,567 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:33:38,214 INFO [long-pulling] client count 0 - -2025-09-22 01:33:38,542 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:33:38,568 INFO toNotifyTaskSize = 0 - -2025-09-22 01:33:38,568 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:33:48,214 INFO [long-pulling] client count 0 - -2025-09-22 01:33:48,542 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:33:48,568 INFO toNotifyTaskSize = 0 - -2025-09-22 01:33:48,569 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:33:58,215 INFO [long-pulling] client count 0 - -2025-09-22 01:33:58,543 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:33:58,570 INFO toNotifyTaskSize = 0 - -2025-09-22 01:33:58,570 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:34:08,217 INFO [long-pulling] client count 0 - -2025-09-22 01:34:08,544 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:34:08,571 INFO toNotifyTaskSize = 0 - -2025-09-22 01:34:08,571 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:34:18,217 INFO [long-pulling] client count 0 - -2025-09-22 01:34:18,544 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:34:18,572 INFO toNotifyTaskSize = 0 - -2025-09-22 01:34:18,572 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:34:28,219 INFO [long-pulling] client count 0 - -2025-09-22 01:34:28,545 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:34:28,573 INFO toNotifyTaskSize = 0 - -2025-09-22 01:34:28,573 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:34:38,219 INFO [long-pulling] client count 0 - -2025-09-22 01:34:38,545 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:34:38,575 INFO toNotifyTaskSize = 0 - -2025-09-22 01:34:38,575 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:34:48,220 INFO [long-pulling] client count 0 - -2025-09-22 01:34:48,546 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:34:48,576 INFO toNotifyTaskSize = 0 - -2025-09-22 01:34:48,577 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:34:58,221 INFO [long-pulling] client count 0 - -2025-09-22 01:34:58,546 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:34:58,577 INFO toNotifyTaskSize = 0 - -2025-09-22 01:34:58,577 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:35:08,222 INFO [long-pulling] client count 0 - -2025-09-22 01:35:08,548 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:35:08,579 INFO toNotifyTaskSize = 0 - -2025-09-22 01:35:08,579 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:35:18,223 INFO [long-pulling] client count 0 - -2025-09-22 01:35:18,548 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:35:18,580 INFO toNotifyTaskSize = 0 - -2025-09-22 01:35:18,581 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:35:28,224 INFO [long-pulling] client count 0 - -2025-09-22 01:35:28,549 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:35:28,582 INFO toNotifyTaskSize = 0 - -2025-09-22 01:35:28,582 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:35:38,225 INFO [long-pulling] client count 0 - -2025-09-22 01:35:38,549 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:35:38,583 INFO toNotifyTaskSize = 0 - -2025-09-22 01:35:38,584 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:35:48,226 INFO [long-pulling] client count 0 - -2025-09-22 01:35:48,550 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:35:48,584 INFO toNotifyTaskSize = 0 - -2025-09-22 01:35:48,584 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:35:58,226 INFO [long-pulling] client count 0 - -2025-09-22 01:35:58,551 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:35:58,585 INFO toNotifyTaskSize = 0 - -2025-09-22 01:35:58,585 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:36:08,227 INFO [long-pulling] client count 0 - -2025-09-22 01:36:08,552 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:36:08,586 INFO toNotifyTaskSize = 0 - -2025-09-22 01:36:08,586 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:36:18,228 INFO [long-pulling] client count 0 - -2025-09-22 01:36:18,553 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:36:18,587 INFO toNotifyTaskSize = 0 - -2025-09-22 01:36:18,588 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:36:28,229 INFO [long-pulling] client count 0 - -2025-09-22 01:36:28,554 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:36:28,588 INFO toNotifyTaskSize = 0 - -2025-09-22 01:36:28,588 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:36:38,230 INFO [long-pulling] client count 0 - -2025-09-22 01:36:38,554 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:36:38,589 INFO toNotifyTaskSize = 0 - -2025-09-22 01:36:38,589 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:36:48,231 INFO [long-pulling] client count 0 - -2025-09-22 01:36:48,555 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:36:48,590 INFO toNotifyTaskSize = 0 - -2025-09-22 01:36:48,590 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:36:58,232 INFO [long-pulling] client count 0 - -2025-09-22 01:36:58,557 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:36:58,590 INFO toNotifyTaskSize = 0 - -2025-09-22 01:36:58,591 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:37:08,232 INFO [long-pulling] client count 0 - -2025-09-22 01:37:08,558 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:37:08,591 INFO toNotifyTaskSize = 0 - -2025-09-22 01:37:08,591 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:37:18,233 INFO [long-pulling] client count 0 - -2025-09-22 01:37:18,559 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:37:18,592 INFO toNotifyTaskSize = 0 - -2025-09-22 01:37:18,592 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:37:28,234 INFO [long-pulling] client count 0 - -2025-09-22 01:37:28,582 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:37:28,592 INFO toNotifyTaskSize = 0 - -2025-09-22 01:37:28,593 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:37:38,235 INFO [long-pulling] client count 0 - -2025-09-22 01:37:38,583 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:37:38,593 INFO toNotifyTaskSize = 0 - -2025-09-22 01:37:38,593 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:37:48,235 INFO [long-pulling] client count 0 - -2025-09-22 01:37:48,584 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:37:48,595 INFO toNotifyTaskSize = 0 - -2025-09-22 01:37:48,595 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:37:58,237 INFO [long-pulling] client count 0 - -2025-09-22 01:37:58,585 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:37:58,595 INFO toNotifyTaskSize = 0 - -2025-09-22 01:37:58,595 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:08,237 INFO [long-pulling] client count 0 - -2025-09-22 01:38:08,598 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:38:08,598 INFO toNotifyTaskSize = 0 - -2025-09-22 01:38:08,599 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:18,239 INFO [long-pulling] client count 0 - -2025-09-22 01:38:18,599 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:38:18,600 INFO toNotifyTaskSize = 0 - -2025-09-22 01:38:18,600 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:28,240 INFO [long-pulling] client count 0 - -2025-09-22 01:38:28,601 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:38:28,601 INFO toNotifyTaskSize = 0 - -2025-09-22 01:38:28,601 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:38,241 INFO [long-pulling] client count 0 - -2025-09-22 01:38:38,601 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:38:38,601 INFO toNotifyTaskSize = 0 - -2025-09-22 01:38:38,602 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:48,242 INFO [long-pulling] client count 0 - -2025-09-22 01:38:48,602 INFO toNotifyTaskSize = 0 - -2025-09-22 01:38:48,602 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:48,602 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:38:58,243 INFO [long-pulling] client count 0 - -2025-09-22 01:38:58,602 INFO toNotifyTaskSize = 0 - -2025-09-22 01:38:58,602 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:38:58,603 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:08,245 INFO [long-pulling] client count 0 - -2025-09-22 01:39:08,603 INFO toNotifyTaskSize = 0 - -2025-09-22 01:39:08,603 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:39:08,603 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:18,245 INFO [long-pulling] client count 0 - -2025-09-22 01:39:18,603 INFO toNotifyTaskSize = 0 - -2025-09-22 01:39:18,604 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:39:18,604 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:28,246 INFO [long-pulling] client count 0 - -2025-09-22 01:39:28,604 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:28,604 INFO toNotifyTaskSize = 0 - -2025-09-22 01:39:28,604 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:39:38,246 INFO [long-pulling] client count 0 - -2025-09-22 01:39:38,604 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:38,604 INFO toNotifyTaskSize = 0 - -2025-09-22 01:39:38,604 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:39:48,247 INFO [long-pulling] client count 0 - -2025-09-22 01:39:48,605 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:48,605 INFO toNotifyTaskSize = 0 - -2025-09-22 01:39:48,605 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:39:58,248 INFO [long-pulling] client count 0 - -2025-09-22 01:39:58,606 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:39:58,606 INFO toNotifyTaskSize = 0 - -2025-09-22 01:39:58,607 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:08,249 INFO [long-pulling] client count 0 - -2025-09-22 01:40:08,607 INFO toNotifyTaskSize = 0 - -2025-09-22 01:40:08,607 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:08,607 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:40:18,250 INFO [long-pulling] client count 0 - -2025-09-22 01:40:18,608 INFO toNotifyTaskSize = 0 - -2025-09-22 01:40:18,608 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:18,608 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:40:28,251 INFO [long-pulling] client count 0 - -2025-09-22 01:40:28,609 INFO toNotifyTaskSize = 0 - -2025-09-22 01:40:28,609 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:28,609 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:40:38,252 INFO [long-pulling] client count 0 - -2025-09-22 01:40:38,610 INFO toNotifyTaskSize = 0 - -2025-09-22 01:40:38,610 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:38,610 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:40:48,254 INFO [long-pulling] client count 0 - -2025-09-22 01:40:48,610 INFO toNotifyTaskSize = 0 - -2025-09-22 01:40:48,611 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:48,611 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:40:58,254 INFO [long-pulling] client count 0 - -2025-09-22 01:40:58,611 INFO toNotifyTaskSize = 0 - -2025-09-22 01:40:58,611 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:40:58,611 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:08,256 INFO [long-pulling] client count 0 - -2025-09-22 01:41:08,614 INFO toNotifyTaskSize = 0 - -2025-09-22 01:41:08,614 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:41:08,614 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:18,257 INFO [long-pulling] client count 0 - -2025-09-22 01:41:18,615 INFO toNotifyTaskSize = 0 - -2025-09-22 01:41:18,616 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:41:18,616 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:28,258 INFO [long-pulling] client count 0 - -2025-09-22 01:41:28,616 INFO toNotifyTaskSize = 0 - -2025-09-22 01:41:28,617 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:41:28,617 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:38,259 INFO [long-pulling] client count 0 - -2025-09-22 01:41:38,618 INFO toNotifyTaskSize = 0 - -2025-09-22 01:41:38,618 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:41:38,618 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:48,261 INFO [long-pulling] client count 0 - -2025-09-22 01:41:48,619 INFO toNotifyTaskSize = 0 - -2025-09-22 01:41:48,619 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:41:48,619 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:58,262 INFO [long-pulling] client count 0 - -2025-09-22 01:41:58,619 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:41:58,619 INFO toNotifyTaskSize = 0 - -2025-09-22 01:41:58,620 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:42:08,263 INFO [long-pulling] client count 0 - -2025-09-22 01:42:08,620 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:42:08,620 INFO toNotifyTaskSize = 0 - -2025-09-22 01:42:08,620 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:42:18,265 INFO [long-pulling] client count 0 - -2025-09-22 01:42:18,621 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:42:18,621 INFO toNotifyTaskSize = 0 - -2025-09-22 01:42:18,621 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:42:28,266 INFO [long-pulling] client count 0 - -2025-09-22 01:42:28,621 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:42:28,621 INFO toNotifyTaskSize = 0 - -2025-09-22 01:42:28,622 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:42:38,267 INFO [long-pulling] client count 0 - -2025-09-22 01:42:38,622 INFO toNotifyTaskSize = 0 - -2025-09-22 01:42:38,623 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:42:38,622 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:42:48,267 INFO [long-pulling] client count 0 - -2025-09-22 01:42:48,625 INFO toNotifyTaskSize = 0 - -2025-09-22 01:42:48,625 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:42:48,625 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:42:58,268 INFO [long-pulling] client count 0 - -2025-09-22 01:42:58,626 INFO toNotifyTaskSize = 0 - -2025-09-22 01:42:58,626 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:42:58,626 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:43:08,268 INFO [long-pulling] client count 0 - -2025-09-22 01:43:08,627 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:43:08,628 INFO toNotifyTaskSize = 0 - -2025-09-22 01:43:08,628 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:43:18,269 INFO [long-pulling] client count 0 - -2025-09-22 01:43:18,628 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:43:18,628 INFO toNotifyTaskSize = 0 - -2025-09-22 01:43:18,628 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:43:28,270 INFO [long-pulling] client count 0 - -2025-09-22 01:43:28,629 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:43:28,629 INFO toNotifyTaskSize = 0 - -2025-09-22 01:43:28,629 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:43:38,270 INFO [long-pulling] client count 0 - -2025-09-22 01:43:38,629 INFO toNotifyTaskSize = 0 - -2025-09-22 01:43:38,630 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:43:38,630 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:43:48,271 INFO [long-pulling] client count 0 - -2025-09-22 01:43:48,631 INFO toNotifyTaskSize = 0 - -2025-09-22 01:43:48,631 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:43:48,631 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:43:58,273 INFO [long-pulling] client count 0 - -2025-09-22 01:43:58,632 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:43:58,632 INFO toNotifyTaskSize = 0 - -2025-09-22 01:43:58,632 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:44:08,273 INFO [long-pulling] client count 0 - -2025-09-22 01:44:08,633 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:44:08,633 INFO toNotifyTaskSize = 0 - -2025-09-22 01:44:08,634 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:44:18,274 INFO [long-pulling] client count 0 - -2025-09-22 01:44:18,634 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:44:18,634 INFO toNotifyTaskSize = 0 - -2025-09-22 01:44:18,634 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:44:28,274 INFO [long-pulling] client count 0 - -2025-09-22 01:44:28,634 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:44:28,634 INFO toNotifyTaskSize = 0 - -2025-09-22 01:44:28,635 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:44:38,276 INFO [long-pulling] client count 0 - -2025-09-22 01:44:38,635 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:44:38,635 INFO toNotifyTaskSize = 0 - -2025-09-22 01:44:38,636 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:44:48,277 INFO [long-pulling] client count 0 - -2025-09-22 01:44:48,636 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:44:48,636 INFO toNotifyTaskSize = 0 - -2025-09-22 01:44:48,636 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:44:58,279 INFO [long-pulling] client count 0 - -2025-09-22 01:44:58,637 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:44:58,637 INFO toNotifyTaskSize = 0 - -2025-09-22 01:44:58,638 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:45:08,281 INFO [long-pulling] client count 0 - -2025-09-22 01:45:08,638 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:45:08,638 INFO toNotifyTaskSize = 0 - -2025-09-22 01:45:08,638 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:45:18,281 INFO [long-pulling] client count 0 - -2025-09-22 01:45:18,639 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:45:18,639 INFO toNotifyTaskSize = 0 - -2025-09-22 01:45:18,639 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:45:28,284 INFO [long-pulling] client count 0 - -2025-09-22 01:45:28,639 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:45:28,639 INFO toNotifyTaskSize = 0 - -2025-09-22 01:45:28,639 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:45:38,284 INFO [long-pulling] client count 0 - -2025-09-22 01:45:38,640 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:45:38,640 INFO toNotifyTaskSize = 0 - -2025-09-22 01:45:38,640 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:45:48,285 INFO [long-pulling] client count 0 - -2025-09-22 01:45:48,642 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:45:48,642 INFO toNotifyTaskSize = 0 - -2025-09-22 01:45:48,642 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:45:58,287 INFO [long-pulling] client count 0 - -2025-09-22 01:45:58,642 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:45:58,642 INFO toNotifyTaskSize = 0 - -2025-09-22 01:45:58,642 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:46:08,288 INFO [long-pulling] client count 0 - -2025-09-22 01:46:08,643 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:46:08,643 INFO toNotifyTaskSize = 0 - -2025-09-22 01:46:08,644 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:46:18,289 INFO [long-pulling] client count 0 - -2025-09-22 01:46:18,644 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:46:18,644 INFO toNotifyTaskSize = 0 - -2025-09-22 01:46:18,644 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:46:28,289 INFO [long-pulling] client count 0 - -2025-09-22 01:46:28,644 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:46:28,644 INFO toNotifyTaskSize = 0 - -2025-09-22 01:46:28,645 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:46:38,291 INFO [long-pulling] client count 0 - -2025-09-22 01:46:38,646 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:46:38,646 INFO toNotifyTaskSize = 0 - -2025-09-22 01:46:38,646 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:46:48,293 INFO [long-pulling] client count 0 - -2025-09-22 01:46:48,646 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:46:48,646 INFO toNotifyTaskSize = 0 - -2025-09-22 01:46:48,662 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:46:58,294 INFO [long-pulling] client count 0 - -2025-09-22 01:46:58,662 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:46:58,663 INFO toNotifyTaskSize = 0 - -2025-09-22 01:46:58,663 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:08,295 INFO [long-pulling] client count 0 - -2025-09-22 01:47:08,663 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:47:08,664 INFO toNotifyTaskSize = 0 - -2025-09-22 01:47:08,664 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:18,296 INFO [long-pulling] client count 0 - -2025-09-22 01:47:18,664 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:47:18,664 INFO toNotifyTaskSize = 0 - -2025-09-22 01:47:18,664 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:28,297 INFO [long-pulling] client count 0 - -2025-09-22 01:47:28,664 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:47:28,664 INFO toNotifyTaskSize = 0 - -2025-09-22 01:47:28,665 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:38,298 INFO [long-pulling] client count 0 - -2025-09-22 01:47:38,665 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:47:38,665 INFO toNotifyTaskSize = 0 - -2025-09-22 01:47:38,665 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:48,299 INFO [long-pulling] client count 0 - -2025-09-22 01:47:48,666 INFO toNotifyTaskSize = 0 - -2025-09-22 01:47:48,666 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:48,666 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:47:58,302 INFO [long-pulling] client count 0 - -2025-09-22 01:47:58,667 INFO toNotifyTaskSize = 0 - -2025-09-22 01:47:58,667 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:47:58,667 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:08,303 INFO [long-pulling] client count 0 - -2025-09-22 01:48:08,668 INFO toNotifyTaskSize = 0 - -2025-09-22 01:48:08,668 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:48:08,668 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:18,303 INFO [long-pulling] client count 0 - -2025-09-22 01:48:18,668 INFO toNotifyTaskSize = 0 - -2025-09-22 01:48:18,668 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:48:18,668 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:28,304 INFO [long-pulling] client count 0 - -2025-09-22 01:48:28,669 INFO toNotifyTaskSize = 0 - -2025-09-22 01:48:28,669 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:48:28,669 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:38,305 INFO [long-pulling] client count 0 - -2025-09-22 01:48:38,670 INFO toNotifyTaskSize = 0 - -2025-09-22 01:48:38,670 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:48:38,670 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:48,305 INFO [long-pulling] client count 0 - -2025-09-22 01:48:48,671 INFO toNotifyTaskSize = 0 - -2025-09-22 01:48:48,671 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:48:48,671 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:58,306 INFO [long-pulling] client count 0 - -2025-09-22 01:48:58,672 INFO toNotifyTaskSize = 0 - -2025-09-22 01:48:58,672 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:48:58,672 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:49:08,307 INFO [long-pulling] client count 0 - -2025-09-22 01:49:08,672 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:49:08,673 INFO toNotifyTaskSize = 0 - -2025-09-22 01:49:08,673 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:49:18,309 INFO [long-pulling] client count 0 - -2025-09-22 01:49:18,674 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:49:18,674 INFO toNotifyTaskSize = 0 - -2025-09-22 01:49:18,674 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:49:28,310 INFO [long-pulling] client count 0 - -2025-09-22 01:49:28,674 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:49:28,674 INFO toNotifyTaskSize = 0 - -2025-09-22 01:49:28,674 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:49:38,311 INFO [long-pulling] client count 0 - -2025-09-22 01:49:38,675 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:49:38,675 INFO toNotifyTaskSize = 0 - -2025-09-22 01:49:38,676 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:49:48,311 INFO [long-pulling] client count 0 - -2025-09-22 01:49:48,676 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:49:48,676 INFO toNotifyTaskSize = 0 - -2025-09-22 01:49:48,676 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:50:07,792 INFO [long-pulling] client count 0 - -2025-09-22 01:50:17,833 INFO [long-pulling] client count 0 - -2025-09-22 01:50:18,209 INFO toNotifyTaskSize = 0 - -2025-09-22 01:50:18,209 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:50:18,210 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:50:27,834 INFO [long-pulling] client count 0 - -2025-09-22 01:50:28,210 INFO toNotifyTaskSize = 0 - -2025-09-22 01:50:28,211 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:50:28,211 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:50:37,836 INFO [long-pulling] client count 0 - -2025-09-22 01:50:38,212 INFO toNotifyTaskSize = 0 - -2025-09-22 01:50:38,212 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:50:38,212 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:50:47,837 INFO [long-pulling] client count 0 - -2025-09-22 01:50:48,214 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:50:48,214 INFO toNotifyTaskSize = 0 - -2025-09-22 01:50:48,214 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:50:57,838 INFO [long-pulling] client count 0 - -2025-09-22 01:50:58,214 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:50:58,215 INFO toNotifyTaskSize = 0 - -2025-09-22 01:50:58,215 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:51:07,840 INFO [long-pulling] client count 0 - -2025-09-22 01:51:08,215 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:51:08,215 INFO toNotifyTaskSize = 0 - -2025-09-22 01:51:08,215 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:51:17,841 INFO [long-pulling] client count 0 - -2025-09-22 01:51:18,216 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:51:18,216 INFO toNotifyTaskSize = 0 - -2025-09-22 01:51:18,216 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:51:27,841 INFO [long-pulling] client count 0 - -2025-09-22 01:51:28,217 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:51:28,217 INFO toNotifyTaskSize = 0 - -2025-09-22 01:51:28,217 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:51:37,842 INFO [long-pulling] client count 0 - -2025-09-22 01:51:38,218 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:51:38,218 INFO toNotifyTaskSize = 0 - -2025-09-22 01:51:38,218 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:51:47,843 INFO [long-pulling] client count 0 - -2025-09-22 01:51:48,219 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:51:48,219 INFO toNotifyTaskSize = 0 - -2025-09-22 01:51:48,220 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:51:57,844 INFO [long-pulling] client count 0 - -2025-09-22 01:51:58,220 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:51:58,220 INFO toNotifyTaskSize = 0 - -2025-09-22 01:51:58,220 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:52:07,845 INFO [long-pulling] client count 0 - -2025-09-22 01:52:08,221 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:52:08,221 INFO toNotifyTaskSize = 0 - -2025-09-22 01:52:08,221 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:52:17,845 INFO [long-pulling] client count 0 - -2025-09-22 01:52:18,221 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:52:18,222 INFO toNotifyTaskSize = 0 - -2025-09-22 01:52:18,222 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:52:27,847 INFO [long-pulling] client count 0 - -2025-09-22 01:52:28,222 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:52:28,222 INFO toNotifyTaskSize = 0 - -2025-09-22 01:52:28,222 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:52:37,848 INFO [long-pulling] client count 0 - -2025-09-22 01:52:38,222 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:52:38,223 INFO toNotifyTaskSize = 0 - -2025-09-22 01:52:38,223 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:52:47,849 INFO [long-pulling] client count 0 - -2025-09-22 01:52:48,223 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:52:48,223 INFO toNotifyTaskSize = 0 - -2025-09-22 01:52:48,223 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:52:57,850 INFO [long-pulling] client count 0 - -2025-09-22 01:52:58,224 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:52:58,224 INFO toNotifyTaskSize = 0 - -2025-09-22 01:52:58,224 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:07,851 INFO [long-pulling] client count 0 - -2025-09-22 01:53:08,225 INFO toNotifyTaskSize = 0 - -2025-09-22 01:53:08,225 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:08,225 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:53:17,852 INFO [long-pulling] client count 0 - -2025-09-22 01:53:18,225 INFO toNotifyTaskSize = 0 - -2025-09-22 01:53:18,225 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:18,225 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:53:27,853 INFO [long-pulling] client count 0 - -2025-09-22 01:53:28,227 INFO toNotifyTaskSize = 0 - -2025-09-22 01:53:28,227 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:28,227 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:53:37,854 INFO [long-pulling] client count 0 - -2025-09-22 01:53:38,227 INFO toNotifyTaskSize = 0 - -2025-09-22 01:53:38,227 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:38,227 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:53:47,855 INFO [long-pulling] client count 0 - -2025-09-22 01:53:48,228 INFO toNotifyTaskSize = 0 - -2025-09-22 01:53:48,228 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:48,228 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:53:57,856 INFO [long-pulling] client count 0 - -2025-09-22 01:53:58,228 INFO toNotifyTaskSize = 0 - -2025-09-22 01:53:58,229 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:53:58,228 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:07,857 INFO [long-pulling] client count 0 - -2025-09-22 01:54:08,229 INFO toNotifyTaskSize = 0 - -2025-09-22 01:54:08,229 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:54:08,229 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:17,857 INFO [long-pulling] client count 0 - -2025-09-22 01:54:18,230 INFO toNotifyTaskSize = 0 - -2025-09-22 01:54:18,230 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:54:18,230 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:27,858 INFO [long-pulling] client count 0 - -2025-09-22 01:54:28,230 INFO toNotifyTaskSize = 0 - -2025-09-22 01:54:28,230 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:54:28,230 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:37,859 INFO [long-pulling] client count 0 - -2025-09-22 01:54:38,231 INFO toNotifyTaskSize = 0 - -2025-09-22 01:54:38,231 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:38,231 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:54:47,860 INFO [long-pulling] client count 0 - -2025-09-22 01:54:48,232 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:48,232 INFO toNotifyTaskSize = 0 - -2025-09-22 01:54:48,233 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:54:57,861 INFO [long-pulling] client count 0 - -2025-09-22 01:54:58,233 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:54:58,233 INFO toNotifyTaskSize = 0 - -2025-09-22 01:54:58,233 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:07,863 INFO [long-pulling] client count 0 - -2025-09-22 01:55:08,233 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:55:08,233 INFO toNotifyTaskSize = 0 - -2025-09-22 01:55:08,234 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:17,865 INFO [long-pulling] client count 0 - -2025-09-22 01:55:18,234 INFO toNotifyTaskSize = 0 - -2025-09-22 01:55:18,234 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:18,234 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:55:27,866 INFO [long-pulling] client count 0 - -2025-09-22 01:55:28,234 INFO toNotifyTaskSize = 0 - -2025-09-22 01:55:28,235 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:28,235 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:55:37,867 INFO [long-pulling] client count 0 - -2025-09-22 01:55:38,235 INFO toNotifyTaskSize = 0 - -2025-09-22 01:55:38,235 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:38,235 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:55:47,867 INFO [long-pulling] client count 0 - -2025-09-22 01:55:48,242 INFO toNotifyTaskSize = 0 - -2025-09-22 01:55:48,243 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:48,243 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:55:57,868 INFO [long-pulling] client count 0 - -2025-09-22 01:55:58,243 INFO toNotifyTaskSize = 0 - -2025-09-22 01:55:58,244 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:55:58,244 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:07,868 INFO [long-pulling] client count 0 - -2025-09-22 01:56:08,245 INFO toNotifyTaskSize = 0 - -2025-09-22 01:56:08,245 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:56:08,245 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:17,870 INFO [long-pulling] client count 0 - -2025-09-22 01:56:18,245 INFO toNotifyTaskSize = 0 - -2025-09-22 01:56:18,245 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:56:18,245 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:27,871 INFO [long-pulling] client count 0 - -2025-09-22 01:56:28,245 INFO toNotifyTaskSize = 0 - -2025-09-22 01:56:28,246 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:56:28,246 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:37,871 INFO [long-pulling] client count 0 - -2025-09-22 01:56:38,246 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:38,246 INFO toNotifyTaskSize = 0 - -2025-09-22 01:56:38,246 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:56:47,872 INFO [long-pulling] client count 0 - -2025-09-22 01:56:48,247 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:48,247 INFO toNotifyTaskSize = 0 - -2025-09-22 01:56:48,247 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:56:57,872 INFO [long-pulling] client count 0 - -2025-09-22 01:56:58,247 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:56:58,248 INFO toNotifyTaskSize = 0 - -2025-09-22 01:56:58,248 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:57:07,873 INFO [long-pulling] client count 0 - -2025-09-22 01:57:08,249 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:57:08,249 INFO toNotifyTaskSize = 0 - -2025-09-22 01:57:08,249 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:57:17,874 INFO [long-pulling] client count 0 - -2025-09-22 01:57:18,250 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:57:18,250 INFO toNotifyTaskSize = 0 - -2025-09-22 01:57:18,250 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:57:27,874 INFO [long-pulling] client count 0 - -2025-09-22 01:57:28,250 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:57:28,250 INFO toNotifyTaskSize = 0 - -2025-09-22 01:57:28,250 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:57:37,874 INFO [long-pulling] client count 0 - -2025-09-22 01:57:38,251 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:57:38,251 INFO toNotifyTaskSize = 0 - -2025-09-22 01:57:38,251 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:57:47,876 INFO [long-pulling] client count 0 - -2025-09-22 01:57:48,252 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:57:48,252 INFO toNotifyTaskSize = 0 - -2025-09-22 01:57:48,252 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:57:57,877 INFO [long-pulling] client count 0 - -2025-09-22 01:57:58,253 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:57:58,253 INFO toNotifyTaskSize = 0 - -2025-09-22 01:57:58,253 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:07,879 INFO [long-pulling] client count 0 - -2025-09-22 01:58:08,253 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:58:08,253 INFO toNotifyTaskSize = 0 - -2025-09-22 01:58:08,254 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:17,880 INFO [long-pulling] client count 0 - -2025-09-22 01:58:18,254 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:58:18,254 INFO toNotifyTaskSize = 0 - -2025-09-22 01:58:18,254 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:27,882 INFO [long-pulling] client count 0 - -2025-09-22 01:58:28,255 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:58:28,255 INFO toNotifyTaskSize = 0 - -2025-09-22 01:58:28,255 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:37,883 INFO [long-pulling] client count 0 - -2025-09-22 01:58:38,256 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:58:38,256 INFO toNotifyTaskSize = 0 - -2025-09-22 01:58:38,256 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:47,884 INFO [long-pulling] client count 0 - -2025-09-22 01:58:48,256 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:58:48,256 INFO toNotifyTaskSize = 0 - -2025-09-22 01:58:48,256 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:57,885 INFO [long-pulling] client count 0 - -2025-09-22 01:58:58,257 INFO toNotifyTaskSize = 0 - -2025-09-22 01:58:58,257 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:58:58,257 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:59:07,886 INFO [long-pulling] client count 0 - -2025-09-22 01:59:08,258 INFO toNotifyTaskSize = 0 - -2025-09-22 01:59:08,258 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:59:08,258 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:59:17,887 INFO [long-pulling] client count 0 - -2025-09-22 01:59:18,259 INFO toNotifyTaskSize = 0 - -2025-09-22 01:59:18,259 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:59:18,259 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:59:27,889 INFO [long-pulling] client count 0 - -2025-09-22 01:59:28,260 INFO toNotifyTaskSize = 0 - -2025-09-22 01:59:28,260 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:59:28,260 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:59:37,889 INFO [long-pulling] client count 0 - -2025-09-22 01:59:38,261 INFO toNotifyTaskSize = 0 - -2025-09-22 01:59:38,261 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:59:38,261 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:59:47,889 INFO [long-pulling] client count 0 - -2025-09-22 01:59:48,261 INFO toNotifyTaskSize = 0 - -2025-09-22 01:59:48,262 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:59:48,262 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 01:59:57,890 INFO [long-pulling] client count 0 - -2025-09-22 01:59:58,262 INFO toNotifyTaskSize = 0 - -2025-09-22 01:59:58,262 INFO toClientNotifyTaskSize = 0 - -2025-09-22 01:59:58,262 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:07,891 INFO [long-pulling] client count 0 - -2025-09-22 02:00:08,263 INFO toNotifyTaskSize = 0 - -2025-09-22 02:00:08,264 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:00:08,263 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:17,892 INFO [long-pulling] client count 0 - -2025-09-22 02:00:18,264 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:18,264 INFO toNotifyTaskSize = 0 - -2025-09-22 02:00:18,264 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:00:27,894 INFO [long-pulling] client count 0 - -2025-09-22 02:00:28,265 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:28,265 INFO toNotifyTaskSize = 0 - -2025-09-22 02:00:28,266 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:00:37,895 INFO [long-pulling] client count 0 - -2025-09-22 02:00:38,266 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:38,266 INFO toNotifyTaskSize = 0 - -2025-09-22 02:00:38,266 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:00:47,896 INFO [long-pulling] client count 0 - -2025-09-22 02:00:48,267 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:48,268 INFO toNotifyTaskSize = 0 - -2025-09-22 02:00:48,268 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:00:57,897 INFO [long-pulling] client count 0 - -2025-09-22 02:00:58,269 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:00:58,269 INFO toNotifyTaskSize = 0 - -2025-09-22 02:00:58,269 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:01:07,898 INFO [long-pulling] client count 0 - -2025-09-22 02:01:08,270 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:01:08,270 INFO toNotifyTaskSize = 0 - -2025-09-22 02:01:08,270 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:01:17,899 INFO [long-pulling] client count 0 - -2025-09-22 02:01:18,271 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:01:18,272 INFO toNotifyTaskSize = 0 - -2025-09-22 02:01:18,272 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:01:27,900 INFO [long-pulling] client count 0 - -2025-09-22 02:01:28,272 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:01:28,272 INFO toNotifyTaskSize = 0 - -2025-09-22 02:01:28,273 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:01:37,902 INFO [long-pulling] client count 0 - -2025-09-22 02:01:38,273 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:01:38,273 INFO toNotifyTaskSize = 0 - -2025-09-22 02:01:38,273 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:01:47,904 INFO [long-pulling] client count 0 - -2025-09-22 02:01:48,274 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:01:48,274 INFO toNotifyTaskSize = 0 - -2025-09-22 02:01:48,274 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:01:57,905 INFO [long-pulling] client count 0 - -2025-09-22 02:01:58,275 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:01:58,275 INFO toNotifyTaskSize = 0 - -2025-09-22 02:01:58,275 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:07,906 INFO [long-pulling] client count 0 - -2025-09-22 02:02:08,275 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:02:08,275 INFO toNotifyTaskSize = 0 - -2025-09-22 02:02:08,276 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:17,906 INFO [long-pulling] client count 0 - -2025-09-22 02:02:18,276 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:02:18,276 INFO toNotifyTaskSize = 0 - -2025-09-22 02:02:18,276 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:27,907 INFO [long-pulling] client count 0 - -2025-09-22 02:02:28,276 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:02:28,276 INFO toNotifyTaskSize = 0 - -2025-09-22 02:02:28,276 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:37,908 INFO [long-pulling] client count 0 - -2025-09-22 02:02:38,277 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:02:38,277 INFO toNotifyTaskSize = 0 - -2025-09-22 02:02:38,277 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:47,908 INFO [long-pulling] client count 0 - -2025-09-22 02:02:48,278 INFO toNotifyTaskSize = 0 - -2025-09-22 02:02:48,278 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:48,279 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:02:57,910 INFO [long-pulling] client count 0 - -2025-09-22 02:02:58,280 INFO toNotifyTaskSize = 0 - -2025-09-22 02:02:58,280 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:02:58,280 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:07,911 INFO [long-pulling] client count 0 - -2025-09-22 02:03:08,280 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:08,281 INFO toNotifyTaskSize = 0 - -2025-09-22 02:03:08,281 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:03:17,912 INFO [long-pulling] client count 0 - -2025-09-22 02:03:18,282 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:18,282 INFO toNotifyTaskSize = 0 - -2025-09-22 02:03:18,282 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:03:27,914 INFO [long-pulling] client count 0 - -2025-09-22 02:03:28,282 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:28,282 INFO toNotifyTaskSize = 0 - -2025-09-22 02:03:28,282 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:03:37,915 INFO [long-pulling] client count 0 - -2025-09-22 02:03:38,282 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:38,282 INFO toNotifyTaskSize = 0 - -2025-09-22 02:03:38,283 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:03:47,916 INFO [long-pulling] client count 0 - -2025-09-22 02:03:48,284 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:48,284 INFO toNotifyTaskSize = 0 - -2025-09-22 02:03:48,284 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:03:57,917 INFO [long-pulling] client count 0 - -2025-09-22 02:03:58,284 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:03:58,285 INFO toNotifyTaskSize = 0 - -2025-09-22 02:03:58,285 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:04:07,939 INFO [long-pulling] client count 0 - -2025-09-22 02:04:08,285 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:04:08,285 INFO toNotifyTaskSize = 0 - -2025-09-22 02:04:08,285 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:04:17,941 INFO [long-pulling] client count 0 - -2025-09-22 02:04:18,286 INFO toNotifyTaskSize = 0 - -2025-09-22 02:04:18,286 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:04:18,286 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:04:27,942 INFO [long-pulling] client count 0 - -2025-09-22 02:04:28,286 INFO toNotifyTaskSize = 0 - -2025-09-22 02:04:28,286 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:04:28,286 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:04:37,943 INFO [long-pulling] client count 0 - -2025-09-22 02:04:38,287 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:04:38,287 INFO toNotifyTaskSize = 0 - -2025-09-22 02:04:38,287 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:04:47,944 INFO [long-pulling] client count 0 - -2025-09-22 02:04:48,288 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:04:48,289 INFO toNotifyTaskSize = 0 - -2025-09-22 02:04:48,289 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:04:57,944 INFO [long-pulling] client count 0 - -2025-09-22 02:04:58,290 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:04:58,290 INFO toNotifyTaskSize = 0 - -2025-09-22 02:04:58,290 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:05:07,945 INFO [long-pulling] client count 0 - -2025-09-22 02:05:08,290 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:05:08,291 INFO toNotifyTaskSize = 0 - -2025-09-22 02:05:08,291 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:05:17,946 INFO [long-pulling] client count 0 - -2025-09-22 02:05:18,291 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:05:18,291 INFO toNotifyTaskSize = 0 - -2025-09-22 02:05:18,291 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:05:27,948 INFO [long-pulling] client count 0 - -2025-09-22 02:05:28,291 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:05:28,291 INFO toNotifyTaskSize = 0 - -2025-09-22 02:05:28,291 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:05:37,948 INFO [long-pulling] client count 0 - -2025-09-22 02:05:38,292 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:05:38,292 INFO toNotifyTaskSize = 0 - -2025-09-22 02:05:38,293 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:05:47,949 INFO [long-pulling] client count 0 - -2025-09-22 02:05:48,293 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:05:48,293 INFO toNotifyTaskSize = 0 - -2025-09-22 02:05:48,293 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:05:57,950 INFO [long-pulling] client count 0 - -2025-09-22 02:05:58,293 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:05:58,293 INFO toNotifyTaskSize = 0 - -2025-09-22 02:05:58,294 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:06:07,952 INFO [long-pulling] client count 0 - -2025-09-22 02:06:08,294 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:06:08,294 INFO toNotifyTaskSize = 0 - -2025-09-22 02:06:08,294 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:06:17,953 INFO [long-pulling] client count 0 - -2025-09-22 02:06:18,294 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:06:18,294 INFO toNotifyTaskSize = 0 - -2025-09-22 02:06:18,294 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:06:27,954 INFO [long-pulling] client count 0 - -2025-09-22 02:06:28,295 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:06:28,295 INFO toNotifyTaskSize = 0 - -2025-09-22 02:06:28,295 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:06:37,954 INFO [long-pulling] client count 0 - -2025-09-22 02:06:38,295 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:06:38,295 INFO toNotifyTaskSize = 0 - -2025-09-22 02:06:38,295 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:06:47,955 INFO [long-pulling] client count 0 - -2025-09-22 02:06:48,295 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:06:48,296 INFO toNotifyTaskSize = 0 - -2025-09-22 02:06:48,296 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:06:57,956 INFO [long-pulling] client count 0 - -2025-09-22 02:06:58,296 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:06:58,296 INFO toNotifyTaskSize = 0 - -2025-09-22 02:06:58,296 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:07:07,958 INFO [long-pulling] client count 0 - -2025-09-22 02:07:08,296 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:07:08,297 INFO toNotifyTaskSize = 0 - -2025-09-22 02:07:08,297 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:07:17,958 INFO [long-pulling] client count 0 - -2025-09-22 02:07:18,297 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:07:18,297 INFO toNotifyTaskSize = 0 - -2025-09-22 02:07:18,297 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:07:27,959 INFO [long-pulling] client count 0 - -2025-09-22 02:07:28,298 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:07:28,298 INFO toNotifyTaskSize = 0 - -2025-09-22 02:07:28,298 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:07:37,959 INFO [long-pulling] client count 0 - -2025-09-22 02:07:38,298 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:07:38,298 INFO toNotifyTaskSize = 0 - -2025-09-22 02:07:38,298 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:07:47,960 INFO [long-pulling] client count 0 - -2025-09-22 02:07:48,298 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:07:48,298 INFO toNotifyTaskSize = 0 - -2025-09-22 02:07:48,298 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:07:57,962 INFO [long-pulling] client count 0 - -2025-09-22 02:07:58,299 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:07:58,299 INFO toNotifyTaskSize = 0 - -2025-09-22 02:07:58,299 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:08:07,964 INFO [long-pulling] client count 0 - -2025-09-22 02:08:08,299 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:08:08,299 INFO toNotifyTaskSize = 0 - -2025-09-22 02:08:08,299 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:08:17,966 INFO [long-pulling] client count 0 - -2025-09-22 02:08:18,299 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:08:18,299 INFO toNotifyTaskSize = 0 - -2025-09-22 02:08:18,299 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:08:27,967 INFO [long-pulling] client count 0 - -2025-09-22 02:08:28,300 INFO toNotifyTaskSize = 0 - -2025-09-22 02:08:28,300 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:08:28,300 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:08:37,967 INFO [long-pulling] client count 0 - -2025-09-22 02:08:38,300 INFO toNotifyTaskSize = 0 - -2025-09-22 02:08:38,300 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:08:38,300 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:08:47,968 INFO [long-pulling] client count 0 - -2025-09-22 02:08:48,300 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:08:48,301 INFO toNotifyTaskSize = 0 - -2025-09-22 02:08:48,301 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:08:57,969 INFO [long-pulling] client count 0 - -2025-09-22 02:08:58,302 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:08:58,302 INFO toNotifyTaskSize = 0 - -2025-09-22 02:08:58,302 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:07,969 INFO [long-pulling] client count 0 - -2025-09-22 02:09:08,302 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:09:08,302 INFO toNotifyTaskSize = 0 - -2025-09-22 02:09:08,302 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:17,971 INFO [long-pulling] client count 0 - -2025-09-22 02:09:18,305 INFO toNotifyTaskSize = 0 - -2025-09-22 02:09:18,306 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:18,305 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:09:27,972 INFO [long-pulling] client count 0 - -2025-09-22 02:09:28,306 INFO toNotifyTaskSize = 0 - -2025-09-22 02:09:28,306 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:28,307 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:09:37,973 INFO [long-pulling] client count 0 - -2025-09-22 02:09:38,306 INFO toNotifyTaskSize = 0 - -2025-09-22 02:09:38,306 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:38,307 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:09:47,974 INFO [long-pulling] client count 0 - -2025-09-22 02:09:48,307 INFO toNotifyTaskSize = 0 - -2025-09-22 02:09:48,307 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:48,307 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:09:57,975 INFO [long-pulling] client count 0 - -2025-09-22 02:09:58,307 INFO toNotifyTaskSize = 0 - -2025-09-22 02:09:58,307 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:09:58,307 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:10:07,976 INFO [long-pulling] client count 0 - -2025-09-22 02:10:08,308 INFO toNotifyTaskSize = 0 - -2025-09-22 02:10:08,308 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:10:08,308 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:10:17,977 INFO [long-pulling] client count 0 - -2025-09-22 02:10:18,308 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:10:18,308 INFO toNotifyTaskSize = 0 - -2025-09-22 02:10:18,309 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:10:27,978 INFO [long-pulling] client count 0 - -2025-09-22 02:10:28,309 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:10:28,309 INFO toNotifyTaskSize = 0 - -2025-09-22 02:10:28,309 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:10:37,979 INFO [long-pulling] client count 0 - -2025-09-22 02:10:38,309 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:10:38,309 INFO toNotifyTaskSize = 0 - -2025-09-22 02:10:38,309 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:10:47,981 INFO [long-pulling] client count 0 - -2025-09-22 02:10:48,310 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:10:48,310 INFO toNotifyTaskSize = 0 - -2025-09-22 02:10:48,310 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:10:57,982 INFO [long-pulling] client count 0 - -2025-09-22 02:10:58,310 INFO toNotifyTaskSize = 0 - -2025-09-22 02:10:58,310 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:10:58,310 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:07,982 INFO [long-pulling] client count 0 - -2025-09-22 02:11:08,311 INFO toNotifyTaskSize = 0 - -2025-09-22 02:11:08,311 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:11:08,311 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:17,983 INFO [long-pulling] client count 0 - -2025-09-22 02:11:18,312 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:18,312 INFO toNotifyTaskSize = 0 - -2025-09-22 02:11:18,312 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:11:27,984 INFO [long-pulling] client count 0 - -2025-09-22 02:11:28,312 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:28,312 INFO toNotifyTaskSize = 0 - -2025-09-22 02:11:28,313 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:11:37,987 INFO [long-pulling] client count 0 - -2025-09-22 02:11:38,312 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:38,313 INFO toNotifyTaskSize = 0 - -2025-09-22 02:11:38,313 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:11:47,988 INFO [long-pulling] client count 0 - -2025-09-22 02:11:48,313 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:48,313 INFO toNotifyTaskSize = 0 - -2025-09-22 02:11:48,313 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:11:57,989 INFO [long-pulling] client count 0 - -2025-09-22 02:11:58,313 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:11:58,313 INFO toNotifyTaskSize = 0 - -2025-09-22 02:11:58,314 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:12:07,990 INFO [long-pulling] client count 0 - -2025-09-22 02:12:08,313 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:12:08,314 INFO toNotifyTaskSize = 0 - -2025-09-22 02:12:08,314 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:12:17,991 INFO [long-pulling] client count 0 - -2025-09-22 02:12:18,314 INFO toNotifyTaskSize = 0 - -2025-09-22 02:12:18,314 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:12:18,314 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:12:27,992 INFO [long-pulling] client count 0 - -2025-09-22 02:12:28,315 INFO toNotifyTaskSize = 0 - -2025-09-22 02:12:28,315 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:12:28,316 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:12:37,993 INFO [long-pulling] client count 0 - -2025-09-22 02:12:38,317 INFO toNotifyTaskSize = 0 - -2025-09-22 02:12:38,317 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:12:38,317 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:12:47,994 INFO [long-pulling] client count 0 - -2025-09-22 02:12:48,318 INFO toNotifyTaskSize = 0 - -2025-09-22 02:12:48,318 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:12:48,318 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:12:57,995 INFO [long-pulling] client count 0 - -2025-09-22 02:12:58,318 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:12:58,318 INFO toNotifyTaskSize = 0 - -2025-09-22 02:12:58,319 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:13:07,996 INFO [long-pulling] client count 0 - -2025-09-22 02:13:08,319 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:13:08,320 INFO toNotifyTaskSize = 0 - -2025-09-22 02:13:08,320 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:13:17,997 INFO [long-pulling] client count 0 - -2025-09-22 02:13:18,320 INFO toNotifyTaskSize = 0 - -2025-09-22 02:13:18,320 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:13:18,320 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:13:27,998 INFO [long-pulling] client count 0 - -2025-09-22 02:13:28,320 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:13:28,320 INFO toNotifyTaskSize = 0 - -2025-09-22 02:13:28,321 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:13:37,999 INFO [long-pulling] client count 0 - -2025-09-22 02:13:38,321 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:13:38,322 INFO toNotifyTaskSize = 0 - -2025-09-22 02:13:38,322 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:13:48,001 INFO [long-pulling] client count 0 - -2025-09-22 02:13:48,322 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:13:48,322 INFO toNotifyTaskSize = 0 - -2025-09-22 02:13:48,322 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:13:58,002 INFO [long-pulling] client count 0 - -2025-09-22 02:13:58,322 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:13:58,323 INFO toNotifyTaskSize = 0 - -2025-09-22 02:13:58,323 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:14:08,003 INFO [long-pulling] client count 0 - -2025-09-22 02:14:08,323 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:14:08,323 INFO toNotifyTaskSize = 0 - -2025-09-22 02:14:08,323 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:14:18,004 INFO [long-pulling] client count 0 - -2025-09-22 02:14:18,324 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:14:18,324 INFO toNotifyTaskSize = 0 - -2025-09-22 02:14:18,324 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:14:28,005 INFO [long-pulling] client count 0 - -2025-09-22 02:14:28,324 INFO toNotifyTaskSize = 0 - -2025-09-22 02:14:28,324 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:14:28,325 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:14:38,006 INFO [long-pulling] client count 0 - -2025-09-22 02:14:38,325 INFO toNotifyTaskSize = 0 - -2025-09-22 02:14:38,325 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:14:38,325 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:14:48,006 INFO [long-pulling] client count 0 - -2025-09-22 02:14:48,326 INFO toNotifyTaskSize = 0 - -2025-09-22 02:14:48,326 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:14:48,326 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:14:58,007 INFO [long-pulling] client count 0 - -2025-09-22 02:14:58,327 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:14:58,327 INFO toNotifyTaskSize = 0 - -2025-09-22 02:14:58,328 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:15:08,008 INFO [long-pulling] client count 0 - -2025-09-22 02:15:08,328 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:15:08,328 INFO toNotifyTaskSize = 0 - -2025-09-22 02:15:08,328 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:15:18,008 INFO [long-pulling] client count 0 - -2025-09-22 02:15:18,328 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:15:18,328 INFO toNotifyTaskSize = 0 - -2025-09-22 02:15:18,328 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:15:28,009 INFO [long-pulling] client count 0 - -2025-09-22 02:15:28,328 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:15:28,328 INFO toNotifyTaskSize = 0 - -2025-09-22 02:15:28,329 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:15:38,011 INFO [long-pulling] client count 0 - -2025-09-22 02:15:38,329 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:15:38,329 INFO toNotifyTaskSize = 0 - -2025-09-22 02:15:38,329 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:15:48,011 INFO [long-pulling] client count 0 - -2025-09-22 02:15:48,330 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:15:48,330 INFO toNotifyTaskSize = 0 - -2025-09-22 02:15:48,330 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:15:58,012 INFO [long-pulling] client count 0 - -2025-09-22 02:15:58,331 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:15:58,331 INFO toNotifyTaskSize = 0 - -2025-09-22 02:15:58,331 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:08,013 INFO [long-pulling] client count 0 - -2025-09-22 02:16:08,332 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:16:08,332 INFO toNotifyTaskSize = 0 - -2025-09-22 02:16:08,332 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:18,014 INFO [long-pulling] client count 0 - -2025-09-22 02:16:18,332 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:16:18,332 INFO toNotifyTaskSize = 0 - -2025-09-22 02:16:18,332 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:28,015 INFO [long-pulling] client count 0 - -2025-09-22 02:16:28,333 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:16:28,333 INFO toNotifyTaskSize = 0 - -2025-09-22 02:16:28,333 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:38,016 INFO [long-pulling] client count 0 - -2025-09-22 02:16:38,333 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:16:38,333 INFO toNotifyTaskSize = 0 - -2025-09-22 02:16:38,333 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:48,017 INFO [long-pulling] client count 0 - -2025-09-22 02:16:48,334 INFO toNotifyTaskSize = 0 - -2025-09-22 02:16:48,334 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:48,334 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:16:58,018 INFO [long-pulling] client count 0 - -2025-09-22 02:16:58,334 INFO toNotifyTaskSize = 0 - -2025-09-22 02:16:58,334 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:16:58,334 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:17:08,018 INFO [long-pulling] client count 0 - -2025-09-22 02:17:08,334 INFO toNotifyTaskSize = 0 - -2025-09-22 02:17:08,335 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:17:08,335 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:17:18,019 INFO [long-pulling] client count 0 - -2025-09-22 02:17:18,336 INFO toNotifyTaskSize = 0 - -2025-09-22 02:17:18,336 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:17:18,336 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:17:28,020 INFO [long-pulling] client count 0 - -2025-09-22 02:17:28,337 INFO toNotifyTaskSize = 0 - -2025-09-22 02:17:28,337 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:17:28,337 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:17:38,021 INFO [long-pulling] client count 0 - -2025-09-22 02:17:38,338 INFO toNotifyTaskSize = 0 - -2025-09-22 02:17:38,338 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:17:38,338 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:17:48,021 INFO [long-pulling] client count 0 - -2025-09-22 02:17:48,339 INFO toNotifyTaskSize = 0 - -2025-09-22 02:17:48,339 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:17:48,339 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:17:58,022 INFO [long-pulling] client count 0 - -2025-09-22 02:17:58,340 INFO toNotifyTaskSize = 0 - -2025-09-22 02:17:58,340 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:17:58,340 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:18:08,023 INFO [long-pulling] client count 0 - -2025-09-22 02:18:08,340 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:18:08,341 INFO toNotifyTaskSize = 0 - -2025-09-22 02:18:08,341 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:18:18,024 INFO [long-pulling] client count 0 - -2025-09-22 02:18:18,342 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:18:18,342 INFO toNotifyTaskSize = 0 - -2025-09-22 02:18:18,342 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:18:28,025 INFO [long-pulling] client count 0 - -2025-09-22 02:18:28,342 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:18:28,343 INFO toNotifyTaskSize = 0 - -2025-09-22 02:18:28,343 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:18:38,026 INFO [long-pulling] client count 0 - -2025-09-22 02:18:38,343 INFO toNotifyTaskSize = 0 - -2025-09-22 02:18:38,343 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:18:38,344 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:18:48,027 INFO [long-pulling] client count 0 - -2025-09-22 02:18:48,344 INFO toNotifyTaskSize = 0 - -2025-09-22 02:18:48,344 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:18:48,345 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:18:58,028 INFO [long-pulling] client count 0 - -2025-09-22 02:18:58,345 INFO toNotifyTaskSize = 0 - -2025-09-22 02:18:58,345 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:18:58,346 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:08,030 INFO [long-pulling] client count 0 - -2025-09-22 02:19:08,346 INFO toNotifyTaskSize = 0 - -2025-09-22 02:19:08,346 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:19:08,346 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:18,031 INFO [long-pulling] client count 0 - -2025-09-22 02:19:18,347 INFO toNotifyTaskSize = 0 - -2025-09-22 02:19:18,347 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:19:18,347 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:28,032 INFO [long-pulling] client count 0 - -2025-09-22 02:19:28,347 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:28,347 INFO toNotifyTaskSize = 0 - -2025-09-22 02:19:28,347 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:19:38,033 INFO [long-pulling] client count 0 - -2025-09-22 02:19:38,348 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:38,348 INFO toNotifyTaskSize = 0 - -2025-09-22 02:19:38,348 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:19:48,033 INFO [long-pulling] client count 0 - -2025-09-22 02:19:48,348 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:48,348 INFO toNotifyTaskSize = 0 - -2025-09-22 02:19:48,348 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:19:58,034 INFO [long-pulling] client count 0 - -2025-09-22 02:19:58,349 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:19:58,349 INFO toNotifyTaskSize = 0 - -2025-09-22 02:19:58,349 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:20:08,034 INFO [long-pulling] client count 0 - -2025-09-22 02:20:08,350 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:20:08,350 INFO toNotifyTaskSize = 0 - -2025-09-22 02:20:08,351 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:20:18,035 INFO [long-pulling] client count 0 - -2025-09-22 02:20:18,351 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:20:18,351 INFO toNotifyTaskSize = 0 - -2025-09-22 02:20:18,351 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:20:28,054 INFO [long-pulling] client count 0 - -2025-09-22 02:20:28,352 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:20:28,352 INFO toNotifyTaskSize = 0 - -2025-09-22 02:20:28,352 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:20:38,054 INFO [long-pulling] client count 0 - -2025-09-22 02:20:38,352 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:20:38,352 INFO toNotifyTaskSize = 0 - -2025-09-22 02:20:38,352 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:20:48,056 INFO [long-pulling] client count 0 - -2025-09-22 02:20:48,353 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:20:48,353 INFO toNotifyTaskSize = 0 - -2025-09-22 02:20:48,353 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:20:58,056 INFO [long-pulling] client count 0 - -2025-09-22 02:20:58,353 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:20:58,353 INFO toNotifyTaskSize = 0 - -2025-09-22 02:20:58,353 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:08,056 INFO [long-pulling] client count 0 - -2025-09-22 02:21:08,353 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:21:08,353 INFO toNotifyTaskSize = 0 - -2025-09-22 02:21:08,353 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:18,057 INFO [long-pulling] client count 0 - -2025-09-22 02:21:18,354 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:21:18,354 INFO toNotifyTaskSize = 0 - -2025-09-22 02:21:18,354 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:28,058 INFO [long-pulling] client count 0 - -2025-09-22 02:21:28,354 INFO toNotifyTaskSize = 0 - -2025-09-22 02:21:28,354 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:28,354 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:21:38,058 INFO [long-pulling] client count 0 - -2025-09-22 02:21:38,354 INFO toNotifyTaskSize = 0 - -2025-09-22 02:21:38,354 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:38,354 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:21:48,059 INFO [long-pulling] client count 0 - -2025-09-22 02:21:48,355 INFO toNotifyTaskSize = 0 - -2025-09-22 02:21:48,355 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:48,355 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:21:58,060 INFO [long-pulling] client count 0 - -2025-09-22 02:21:58,355 INFO toNotifyTaskSize = 0 - -2025-09-22 02:21:58,355 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:21:58,355 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:22:08,060 INFO [long-pulling] client count 0 - -2025-09-22 02:22:08,355 INFO toNotifyTaskSize = 0 - -2025-09-22 02:22:08,356 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:22:08,356 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:22:18,062 INFO [long-pulling] client count 0 - -2025-09-22 02:22:18,357 INFO toNotifyTaskSize = 0 - -2025-09-22 02:22:18,357 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:22:18,357 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:22:28,063 INFO [long-pulling] client count 0 - -2025-09-22 02:22:28,358 INFO toNotifyTaskSize = 0 - -2025-09-22 02:22:28,358 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:22:28,358 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:22:38,064 INFO [long-pulling] client count 0 - -2025-09-22 02:22:38,359 INFO toNotifyTaskSize = 0 - -2025-09-22 02:22:38,359 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:22:38,359 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:22:48,065 INFO [long-pulling] client count 0 - -2025-09-22 02:22:48,359 INFO toNotifyTaskSize = 0 - -2025-09-22 02:22:48,360 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:22:48,359 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:22:58,065 INFO [long-pulling] client count 0 - -2025-09-22 02:22:58,360 INFO toNotifyTaskSize = 0 - -2025-09-22 02:22:58,360 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:22:58,360 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:08,066 INFO [long-pulling] client count 0 - -2025-09-22 02:23:08,360 INFO toNotifyTaskSize = 0 - -2025-09-22 02:23:08,360 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:23:08,360 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:18,067 INFO [long-pulling] client count 0 - -2025-09-22 02:23:18,361 INFO toNotifyTaskSize = 0 - -2025-09-22 02:23:18,362 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:23:18,361 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:28,088 INFO [long-pulling] client count 0 - -2025-09-22 02:23:28,362 INFO toNotifyTaskSize = 0 - -2025-09-22 02:23:28,362 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:23:28,362 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:38,089 INFO [long-pulling] client count 0 - -2025-09-22 02:23:38,362 INFO toNotifyTaskSize = 0 - -2025-09-22 02:23:38,363 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:23:38,362 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:48,090 INFO [long-pulling] client count 0 - -2025-09-22 02:23:48,363 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:48,363 INFO toNotifyTaskSize = 0 - -2025-09-22 02:23:48,363 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:23:58,090 INFO [long-pulling] client count 0 - -2025-09-22 02:23:58,363 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:23:58,363 INFO toNotifyTaskSize = 0 - -2025-09-22 02:23:58,363 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:24:08,091 INFO [long-pulling] client count 0 - -2025-09-22 02:24:08,364 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:24:08,364 INFO toNotifyTaskSize = 0 - -2025-09-22 02:24:08,364 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:24:18,093 INFO [long-pulling] client count 0 - -2025-09-22 02:24:18,364 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:24:18,364 INFO toNotifyTaskSize = 0 - -2025-09-22 02:24:18,364 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:24:28,094 INFO [long-pulling] client count 0 - -2025-09-22 02:24:28,364 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:24:28,364 INFO toNotifyTaskSize = 0 - -2025-09-22 02:24:28,365 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:24:38,095 INFO [long-pulling] client count 0 - -2025-09-22 02:24:38,365 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:24:38,365 INFO toNotifyTaskSize = 0 - -2025-09-22 02:24:38,365 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:24:48,095 INFO [long-pulling] client count 0 - -2025-09-22 02:24:48,365 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:24:48,365 INFO toNotifyTaskSize = 0 - -2025-09-22 02:24:48,365 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:24:58,096 INFO [long-pulling] client count 0 - -2025-09-22 02:24:58,365 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:24:58,366 INFO toNotifyTaskSize = 0 - -2025-09-22 02:24:58,366 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:25:08,097 INFO [long-pulling] client count 0 - -2025-09-22 02:25:08,366 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:25:08,366 INFO toNotifyTaskSize = 0 - -2025-09-22 02:25:08,366 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:25:18,098 INFO [long-pulling] client count 0 - -2025-09-22 02:25:18,366 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:25:18,366 INFO toNotifyTaskSize = 0 - -2025-09-22 02:25:18,366 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:25:28,098 INFO [long-pulling] client count 0 - -2025-09-22 02:25:28,367 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:25:28,367 INFO toNotifyTaskSize = 0 - -2025-09-22 02:25:28,367 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:25:38,099 INFO [long-pulling] client count 0 - -2025-09-22 02:25:38,368 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:25:38,368 INFO toNotifyTaskSize = 0 - -2025-09-22 02:25:38,368 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:25:48,101 INFO [long-pulling] client count 0 - -2025-09-22 02:25:48,369 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:25:48,369 INFO toNotifyTaskSize = 0 - -2025-09-22 02:25:48,369 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:25:58,102 INFO [long-pulling] client count 0 - -2025-09-22 02:25:58,369 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:25:58,369 INFO toNotifyTaskSize = 0 - -2025-09-22 02:25:58,370 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:08,103 INFO [long-pulling] client count 0 - -2025-09-22 02:26:08,370 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:26:08,370 INFO toNotifyTaskSize = 0 - -2025-09-22 02:26:08,370 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:18,104 INFO [long-pulling] client count 0 - -2025-09-22 02:26:18,371 INFO toNotifyTaskSize = 0 - -2025-09-22 02:26:18,371 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:18,371 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:26:28,104 INFO [long-pulling] client count 0 - -2025-09-22 02:26:28,372 INFO toNotifyTaskSize = 0 - -2025-09-22 02:26:28,372 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:28,372 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:26:38,105 INFO [long-pulling] client count 0 - -2025-09-22 02:26:38,372 INFO toNotifyTaskSize = 0 - -2025-09-22 02:26:38,372 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:26:38,373 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:48,107 INFO [long-pulling] client count 0 - -2025-09-22 02:26:48,373 INFO toNotifyTaskSize = 0 - -2025-09-22 02:26:48,373 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:48,373 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:26:58,107 INFO [long-pulling] client count 0 - -2025-09-22 02:26:58,374 INFO toNotifyTaskSize = 0 - -2025-09-22 02:26:58,374 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:26:58,375 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:27:08,108 INFO [long-pulling] client count 0 - -2025-09-22 02:27:08,376 INFO toNotifyTaskSize = 0 - -2025-09-22 02:27:08,376 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:27:08,376 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:27:18,109 INFO [long-pulling] client count 0 - -2025-09-22 02:27:18,377 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:27:18,377 INFO toNotifyTaskSize = 0 - -2025-09-22 02:27:18,377 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:27:28,110 INFO [long-pulling] client count 0 - -2025-09-22 02:27:28,377 INFO toNotifyTaskSize = 0 - -2025-09-22 02:27:28,378 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:27:28,377 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:27:38,111 INFO [long-pulling] client count 0 - -2025-09-22 02:27:38,378 INFO toNotifyTaskSize = 0 - -2025-09-22 02:27:38,378 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:27:38,378 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - -2025-09-22 02:27:48,111 INFO [long-pulling] client count 0 - -2025-09-22 02:27:48,379 INFO toNotifyTaskSize = 0 - -2025-09-22 02:27:48,379 INFO toClientNotifyTaskSize = 0 - -2025-09-22 02:27:48,379 INFO groupCount = 0, subscriberClientCount = 0, subscriberCount = 0 - diff --git a/docker/nacos/standalone-logs/config-notify.log b/docker/nacos/standalone-logs/config-notify.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/config-pull-check.log b/docker/nacos/standalone-logs/config-pull-check.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/config-pull.log b/docker/nacos/standalone-logs/config-pull.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/config-server.log b/docker/nacos/standalone-logs/config-server.log deleted file mode 100644 index a2d6e94..0000000 --- a/docker/nacos/standalone-logs/config-server.log +++ /dev/null @@ -1,100 +0,0 @@ -2025-09-22 01:17:00,942 INFO notifyConnectTimeout:100 - -2025-09-22 01:17:00,947 INFO notifySocketTimeout:200 - -2025-09-22 01:17:00,947 INFO isHealthCheck:true - -2025-09-22 01:17:00,948 INFO maxHealthCheckFailCount:12 - -2025-09-22 01:17:00,948 INFO maxContent:10485760 - -2025-09-22 01:17:08,800 INFO All dump page size is set to 100 according to mem limit 1024 MB - -2025-09-22 01:17:08,804 WARN DumpService start - -2025-09-22 01:17:08,804 INFO start clear all config-info. - -2025-09-22 01:17:08,805 INFO clear all config-info success. - -2025-09-22 01:17:08,805 INFO clear all config-info-tenant success. - -2025-09-22 01:17:08,811 INFO start dump all config-info... - -2025-09-22 01:17:08,812 INFO success to dump all config-info。 - -2025-09-22 01:17:08,812 INFO start to clear all gray-config-info on startup. - -2025-09-22 01:17:08,812 INFO clear all config-info-gray success. - -2025-09-22 01:17:08,812 INFO clear all config-info-gray-tenant success. - -2025-09-22 01:17:14,138 INFO notifyConnectTimeout:100 - -2025-09-22 01:17:14,139 INFO notifySocketTimeout:200 - -2025-09-22 01:17:14,139 INFO isHealthCheck:true - -2025-09-22 01:17:14,139 INFO maxHealthCheckFailCount:12 - -2025-09-22 01:17:14,139 INFO maxContent:10485760 - -2025-09-22 01:17:18,984 INFO notifyConnectTimeout:100 - -2025-09-22 01:17:18,984 INFO notifySocketTimeout:200 - -2025-09-22 01:17:18,984 INFO isHealthCheck:true - -2025-09-22 01:17:18,984 INFO maxHealthCheckFailCount:12 - -2025-09-22 01:17:18,984 INFO maxContent:10485760 - -2025-09-22 01:50:01,647 INFO notifyConnectTimeout:100 - -2025-09-22 01:50:01,651 INFO notifySocketTimeout:200 - -2025-09-22 01:50:01,652 INFO isHealthCheck:true - -2025-09-22 01:50:01,652 INFO maxHealthCheckFailCount:12 - -2025-09-22 01:50:01,653 INFO maxContent:10485760 - -2025-09-22 01:50:08,648 INFO All dump page size is set to 100 according to mem limit 1024 MB - -2025-09-22 01:50:08,651 WARN DumpService start - -2025-09-22 01:50:08,652 INFO start clear all config-info. - -2025-09-22 01:50:08,654 INFO clear all config-info success. - -2025-09-22 01:50:08,655 INFO clear all config-info-tenant success. - -2025-09-22 01:50:08,663 INFO start dump all config-info... - -2025-09-22 01:50:08,664 INFO success to dump all config-info。 - -2025-09-22 01:50:08,664 INFO start to clear all gray-config-info on startup. - -2025-09-22 01:50:08,664 INFO clear all config-info-gray success. - -2025-09-22 01:50:08,664 INFO clear all config-info-gray-tenant success. - -2025-09-22 01:50:13,990 INFO notifyConnectTimeout:100 - -2025-09-22 01:50:13,990 INFO notifySocketTimeout:200 - -2025-09-22 01:50:13,991 INFO isHealthCheck:true - -2025-09-22 01:50:13,991 INFO maxHealthCheckFailCount:12 - -2025-09-22 01:50:13,991 INFO maxContent:10485760 - -2025-09-22 01:50:17,557 INFO notifyConnectTimeout:100 - -2025-09-22 01:50:17,558 INFO notifySocketTimeout:200 - -2025-09-22 01:50:17,558 INFO isHealthCheck:true - -2025-09-22 01:50:17,558 INFO maxHealthCheckFailCount:12 - -2025-09-22 01:50:17,558 INFO maxContent:10485760 - diff --git a/docker/nacos/standalone-logs/config-trace.log b/docker/nacos/standalone-logs/config-trace.log deleted file mode 100644 index bc56e36..0000000 --- a/docker/nacos/standalone-logs/config-trace.log +++ /dev/null @@ -1,145 +0,0 @@ -2025-09-26 00:07:45,477|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|247722886|192.168.97.1|false|http -2025-09-26 00:08:00,735|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|247738144|192.168.97.1|false|http -2025-09-26 00:08:00,754|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|247738163|192.168.97.1|false|http -2025-09-26 00:08:12,437|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|247749846|192.168.97.1|false|http -2025-09-26 00:12:30,613|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248008022|192.168.97.1|false|http -2025-09-26 00:12:30,618|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248008027|192.168.97.1|false|http -2025-09-26 00:12:40,009|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248017418|192.168.97.1|false|http -2025-09-26 00:12:40,030|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248017439|192.168.97.1|false|http -2025-09-26 00:13:17,783|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248055192|192.168.97.1|false|http -2025-09-26 00:14:37,573|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248134982|192.168.97.1|false|http -2025-09-26 00:14:37,576|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248134985|192.168.97.1|false|http -2025-09-26 00:22:45,738|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248623146|192.168.97.1|false|http -2025-09-26 00:24:09,179|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248706588|192.168.97.1|false|http -2025-09-26 00:24:09,201|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|248706610|192.168.97.1|false|http -2025-09-26 00:40:33,480|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|249690889|192.168.97.1|false|http -2025-09-26 00:40:33,493|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|249690902|192.168.97.1|false|http -2025-09-26 00:43:35,440|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|249872849|192.168.97.1|false|http -2025-09-26 00:43:35,466|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|249872875|192.168.97.1|false|http -2025-09-26 00:48:31,590|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250168999|192.168.97.1|false|http -2025-09-26 00:48:42,313|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250179722|192.168.97.1|false|http -2025-09-26 00:48:42,332|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250179741|192.168.97.1|false|http -2025-09-26 00:48:56,981|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250194390|192.168.97.1|false|http -2025-09-26 00:49:01,702|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250199111|192.168.97.1|false|http -2025-09-26 00:49:09,229|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250206638|192.168.97.1|false|http -2025-09-26 00:49:46,383|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250243792|192.168.97.1|false|http -2025-09-26 00:49:46,410|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250243819|192.168.97.1|false|http -2025-09-26 00:49:51,489|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250248898|192.168.97.1|false|http -2025-09-26 00:49:51,529|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250248938|192.168.97.1|false|http -2025-09-26 00:51:21,455|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250338864|192.168.97.1|false|http -2025-09-26 00:51:21,466|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250338875|192.168.97.1|false|http -2025-09-26 00:51:42,227|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250359636|192.168.97.1|false|http -2025-09-26 00:51:42,249|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250359658|192.168.97.1|false|http -2025-09-26 00:51:53,207|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250370616|192.168.97.1|false|http -2025-09-26 00:51:53,232|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250370641|192.168.97.1|false|http -2025-09-26 00:52:28,268|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250405677|192.168.97.1|false|http -2025-09-26 00:52:28,287|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250405696|192.168.97.1|false|http -2025-09-26 00:52:42,661|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250420070|192.168.97.1|false|http -2025-09-26 00:52:42,681|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250420090|192.168.97.1|false|http -2025-09-26 00:52:56,804|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250434213|192.168.97.1|false|http -2025-09-26 00:52:56,823|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250434232|192.168.97.1|false|http -2025-09-26 00:53:14,886|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250452295|192.168.97.1|false|http -2025-09-26 00:53:22,727|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250460136|192.168.97.1|false|http -2025-09-26 00:53:22,732|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250460141|192.168.97.1|false|http -2025-09-26 00:53:24,857|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250462266|192.168.97.1|false|http -2025-09-26 00:53:24,884|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250462293|192.168.97.1|false|http -2025-09-26 00:54:46,663|8e5a20eec60e|DevBaseUrl|DEFAULT_GROUP|public|null|1758819286663|fd07:b51a:cc66:d000:0:0:0:1|persist|remove|-1|null -2025-09-26 00:54:46,724|8e5a20eec60e|prodBaseUrl|DEFAULT_GROUP|public|null|1758819286724|fd07:b51a:cc66:d000:0:0:0:1|persist|remove|-1|null -2025-09-26 00:54:46,766|8e5a20eec60e|prodBaseUrl|DEFAULT_GROUP|public|null|1758819286724|192.168.97.3|dump|remove-ok|42|0 -2025-09-26 00:54:46,810|8e5a20eec60e|DevBaseUrl|DEFAULT_GROUP|public|null|1758819286663|192.168.97.3|dump|remove-ok|147|0 -2025-09-26 00:55:53,876|8e5a20eec60e|visualizerConfig|DEFAULT_GROUP|public|null|1758819353826|8e5a20eec60e|persist|pub|-1|778069eef9964541342ec909021e6be6 -2025-09-26 00:55:54,040|8e5a20eec60e|visualizerConfig|DEFAULT_GROUP|public|null|1758819353826|192.168.97.3|dump|ok|214|123 -2025-09-26 00:57:05,454|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|250682863|192.168.97.1|false|http -2025-09-26 00:57:05,466|8e5a20eec60e|visualizerConfig|DEFAULT_GROUP|public|null|1758819353826|pull|ok|71640|192.168.97.1|false|http -2025-09-26 01:02:55,153|8e5a20eec60e|visualizerConfig|DEFAULT_GROUP|public|null|1758819775153|fd07:b51a:cc66:d000:0:0:0:1|persist|remove|-1|null -2025-09-26 01:02:55,205|8e5a20eec60e|visualizerConfig|DEFAULT_GROUP|public|null|1758819775153|192.168.97.3|dump|remove-ok|52|0 -2025-09-26 01:08:12,981|8e5a20eec60e|apiUrlList|DEFAULT_GROUP|public|null|1758820092970|8e5a20eec60e|persist|pub|-1|1e6e9f3b92d871c7b47a1d1284e7d14b -2025-09-26 01:08:13,048|8e5a20eec60e|apiUrlList|DEFAULT_GROUP|public|null|1758820092970|192.168.97.3|dump|ok|78|95 -2025-09-26 01:08:35,898|8e5a20eec60e|apiUrlList|DEFAULT_GROUP|public|null|1758820115891|8e5a20eec60e|persist|pub|-1|2daaae05c2fef2db0fddfe9152c958f4 -2025-09-26 01:08:35,954|8e5a20eec60e|apiUrlList|DEFAULT_GROUP|public|null|1758820115891|192.168.97.3|dump|ok|63|82 -2025-09-26 01:10:04,491|8e5a20eec60e|apiUrlList|DEFAULT_GROUP|public|null|1758820204491|fd07:b51a:cc66:d000:0:0:0:1|persist|remove|-1|null -2025-09-26 01:10:04,559|8e5a20eec60e|apiUrlList|DEFAULT_GROUP|public|null|1758820204491|192.168.97.3|dump|remove-ok|68|0 -2025-09-26 01:10:58,669|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|8e5a20eec60e|persist|pub|-1|b7a782741f667201b54880c925faec4b -2025-09-26 01:10:58,712|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|192.168.97.3|dump|ok|48|5 -2025-09-26 01:12:16,519|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|251593928|192.168.97.1|false|http -2025-09-26 01:12:16,526|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|77862|192.168.97.1|false|http -2025-09-26 01:15:27,182|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|251784591|192.168.97.1|false|http -2025-09-26 01:15:27,190|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|268526|192.168.97.1|false|http -2025-09-26 01:16:04,840|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|251822249|192.168.97.1|false|http -2025-09-26 01:16:04,848|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|306184|192.168.97.1|false|http -2025-09-26 01:16:04,860|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|251822269|192.168.97.1|false|http -2025-09-26 01:16:04,865|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|306201|192.168.97.1|false|http -2025-09-26 01:19:53,577|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252050986|192.168.97.1|false|http -2025-09-26 01:19:53,583|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|534919|192.168.97.1|false|http -2025-09-26 01:20:00,994|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252058403|192.168.97.1|false|http -2025-09-26 01:20:01,011|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|542347|192.168.97.1|false|http -2025-09-26 01:21:15,091|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252132500|192.168.97.1|false|http -2025-09-26 01:21:15,103|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|616439|192.168.97.1|false|http -2025-09-26 01:21:18,837|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252136246|192.168.97.1|false|http -2025-09-26 01:21:18,843|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|620179|192.168.97.1|false|http -2025-09-26 01:22:44,954|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252222363|192.168.97.1|false|http -2025-09-26 01:22:44,959|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|706295|192.168.97.1|false|http -2025-09-26 01:23:01,455|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252238864|192.168.97.1|false|http -2025-09-26 01:23:01,461|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|722797|192.168.97.1|false|http -2025-09-26 01:23:36,393|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252273802|192.168.97.1|false|http -2025-09-26 01:23:36,399|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|757734|192.168.97.1|false|http -2025-09-26 01:24:14,992|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252312400|192.168.97.1|false|http -2025-09-26 01:24:14,996|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|796332|192.168.97.1|false|http -2025-09-26 01:26:09,919|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252427328|192.168.97.1|false|http -2025-09-26 01:26:09,924|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|911260|192.168.97.1|false|http -2025-09-26 01:26:15,000|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252432409|192.168.97.1|false|http -2025-09-26 01:26:15,006|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|916342|192.168.97.1|false|http -2025-09-26 01:29:44,152|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252641561|192.168.97.1|false|http -2025-09-26 01:29:44,156|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1125492|192.168.97.1|false|http -2025-09-26 01:30:09,747|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252667156|192.168.97.1|false|http -2025-09-26 01:30:09,751|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1151087|192.168.97.1|false|http -2025-09-26 01:30:43,528|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252700937|192.168.97.1|false|http -2025-09-26 01:30:43,533|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1184869|192.168.97.1|false|http -2025-09-26 01:31:09,024|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252726433|192.168.97.1|false|http -2025-09-26 01:31:09,028|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1210364|192.168.97.1|false|http -2025-09-26 01:31:20,873|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252738282|192.168.97.1|false|http -2025-09-26 01:31:20,877|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1222213|192.168.97.1|false|http -2025-09-26 01:31:30,302|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252747711|192.168.97.1|false|http -2025-09-26 01:31:30,307|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1231643|192.168.97.1|false|http -2025-09-26 01:32:16,408|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252793817|192.168.97.1|false|http -2025-09-26 01:32:16,413|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1277749|192.168.97.1|false|http -2025-09-26 01:32:26,945|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252804354|192.168.97.1|false|http -2025-09-26 01:32:26,949|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1288285|192.168.97.1|false|http -2025-09-26 01:32:34,696|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252812105|192.168.97.1|false|http -2025-09-26 01:32:34,701|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1296037|192.168.97.1|false|http -2025-09-26 01:33:01,373|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252838782|192.168.97.1|false|http -2025-09-26 01:33:01,377|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1322713|192.168.97.1|false|http -2025-09-26 01:33:24,437|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252861846|192.168.97.1|false|http -2025-09-26 01:33:24,446|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1345782|192.168.97.1|false|http -2025-09-26 01:33:57,384|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|252894793|192.168.97.1|false|http -2025-09-26 01:33:57,388|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1378724|192.168.97.1|false|http -2025-09-26 01:36:19,102|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253036511|192.168.97.1|false|http -2025-09-26 01:36:19,106|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1520442|192.168.97.1|false|http -2025-09-26 01:38:53,230|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253190639|192.168.97.1|false|http -2025-09-26 01:38:53,238|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1674574|192.168.97.1|false|http -2025-09-26 01:39:23,223|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253220632|192.168.97.1|false|http -2025-09-26 01:39:23,227|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1704563|192.168.97.1|false|http -2025-09-26 01:43:42,671|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253480080|192.168.97.1|false|http -2025-09-26 01:43:42,676|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1964012|192.168.97.1|false|http -2025-09-26 01:44:16,598|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253514007|192.168.97.1|false|http -2025-09-26 01:44:16,603|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|1997939|192.168.97.1|false|http -2025-09-26 01:44:58,909|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253556318|192.168.97.1|false|http -2025-09-26 01:44:58,913|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2040249|192.168.97.1|false|http -2025-09-26 01:45:30,656|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253588065|192.168.97.1|false|http -2025-09-26 01:45:30,661|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2071996|192.168.97.1|false|http -2025-09-26 01:45:56,740|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253614149|192.168.97.1|false|http -2025-09-26 01:45:56,745|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2098081|192.168.97.1|false|http -2025-09-26 01:46:45,753|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253663162|192.168.97.1|false|http -2025-09-26 01:46:45,760|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2147096|192.168.97.1|false|http -2025-09-26 01:47:50,738|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253728147|192.168.97.1|false|http -2025-09-26 01:47:50,745|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2212081|192.168.97.1|false|http -2025-09-26 01:48:05,900|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253743309|192.168.97.1|false|http -2025-09-26 01:48:05,905|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2227241|192.168.97.1|false|http -2025-09-26 01:48:18,567|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253755976|192.168.97.1|false|http -2025-09-26 01:48:18,573|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2239909|192.168.97.1|false|http -2025-09-26 01:48:32,953|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253770362|192.168.97.1|false|http -2025-09-26 01:48:32,958|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2254294|192.168.97.1|false|http -2025-09-26 01:48:53,657|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253791066|192.168.97.1|false|http -2025-09-26 01:48:53,662|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2274998|192.168.97.1|false|http -2025-09-26 01:49:13,208|8e5a20eec60e|baseUrl|DEFAULT_GROUP|public|null|1758568742591|pull|ok|253810615|192.168.97.1|false|http -2025-09-26 01:49:13,213|8e5a20eec60e|httpTimeOut|DEFAULT_GROUP|public|null|1758820258664|pull|ok|2294549|192.168.97.1|false|http diff --git a/docker/nacos/standalone-logs/core-auth.log b/docker/nacos/standalone-logs/core-auth.log deleted file mode 100644 index ac7342b..0000000 --- a/docker/nacos/standalone-logs/core-auth.log +++ /dev/null @@ -1,188 +0,0 @@ -2025-09-26 00:54:30,580 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:54:30,692 DEBUG access denied, request: GET /v3/console/cs/config/list, reason: Code: 401, Message: token expired!. - -2025-09-26 00:54:34,024 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 00:54:34,025 DEBUG access denied, request: GET /v3/console/core/namespace/list, reason: Code: 401, Message: token expired!. - -2025-09-26 00:54:34,150 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:54:34,152 DEBUG access denied, request: GET /v3/console/cs/config/list, reason: Code: 401, Message: token expired!. - -2025-09-26 00:54:39,791 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 00:54:39,796 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-26 00:54:39,914 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:54:39,916 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:54:46,038 DEBUG auth start, request: DELETE /v3/console/cs/config/batchDelete - -2025-09-26 00:54:46,040 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:54:46,772 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:54:46,773 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:54:48,393 DEBUG auth start, request: GET /v3/console/cs/config/listener - -2025-09-26 00:54:48,393 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='baseUrl', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:54:48,394 DEBUG auth start, request: GET /v3/console/cs/config/beta - -2025-09-26 00:54:48,394 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='baseUrl', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:54:48,411 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 00:54:48,412 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='baseUrl', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:54:49,455 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:54:49,458 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:55:53,703 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 00:55:53,718 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='visualizerConfig', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:55:53,749 DEBUG auth start, request: POST /v3/console/cs/config - -2025-09-26 00:55:53,753 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='visualizerConfig', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:55:53,970 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:55:53,971 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:55:56,180 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 00:55:56,181 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-26 00:55:56,181 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 00:55:56,182 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='baseUrl', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:55:59,808 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 00:55:59,810 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 00:56:02,338 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 00:56:02,339 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-26 00:56:02,339 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 00:56:02,339 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='visualizerConfig', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:02:51,735 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:02:51,742 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:02:55,104 DEBUG auth start, request: DELETE /v3/console/cs/config/batchDelete - -2025-09-26 01:02:55,104 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:02:55,183 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:02:55,184 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:06:59,302 DEBUG auth start, request: GET /v3/console/cs/config/export2 - -2025-09-26 01:06:59,304 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:12,813 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:08:12,816 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:12,860 DEBUG auth start, request: POST /v3/console/cs/config - -2025-09-26 01:08:12,861 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:13,113 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:08:13,116 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:15,380 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 01:08:15,380 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-26 01:08:15,383 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:08:15,384 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:23,487 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:08:23,488 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:24,606 DEBUG auth start, request: GET /v3/console/cs/config/listener - -2025-09-26 01:08:24,606 DEBUG auth start, request: GET /v3/console/cs/config/beta - -2025-09-26 01:08:24,606 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:24,607 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:24,624 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:08:24,624 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:35,849 DEBUG auth start, request: POST /v3/console/cs/config - -2025-09-26 01:08:35,850 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:35,917 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:08:35,917 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:38,327 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:08:38,328 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:40,616 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 01:08:40,616 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-26 01:08:40,618 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:08:40,619 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='apiUrlList', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:42,045 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:08:42,046 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:08:47,788 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:08:47,789 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:10:04,432 DEBUG auth start, request: DELETE /v3/console/cs/config/batchDelete - -2025-09-26 01:10:04,432 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:10:04,523 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:10:04,524 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:10:58,589 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:10:58,593 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='httpTimeOut', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:10:58,609 DEBUG auth start, request: POST /v3/console/cs/config - -2025-09-26 01:10:58,609 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='httpTimeOut', type='config', properties={action=w}}', action='w'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:10:58,764 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:10:58,766 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:16:49,493 DEBUG auth start, request: GET /v3/console/cs/config - -2025-09-26 01:16:49,494 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='DEFAULT_GROUP', name='baseUrl', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - -2025-09-26 01:16:49,493 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-26 01:16:49,497 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-26 01:17:03,484 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-26 01:17:03,491 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODgzNzI3OX0.i2AEd-VRydzBX_9AMF47mAjLDjdo-U61b0xBavf45vW3hTpmmcAJ6HVsNg43zO7s', globalAdmin=false} - diff --git a/docker/nacos/standalone-logs/core-auth.log.2025-09-22.0 b/docker/nacos/standalone-logs/core-auth.log.2025-09-22.0 deleted file mode 100644 index 5b1c5c1..0000000 --- a/docker/nacos/standalone-logs/core-auth.log.2025-09-22.0 +++ /dev/null @@ -1,56 +0,0 @@ -2025-09-22 01:17:30,856 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-22 01:17:30,872 DEBUG access denied, request: GET /v3/console/core/namespace/list, reason: Code: 401, Message: User not found! Please check user exist or password is right!. - -2025-09-22 01:17:30,992 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-22 01:17:31,026 DEBUG access denied, request: GET /v3/console/cs/config/list, reason: Code: 401, Message: User not found! Please check user exist or password is right!. - -2025-09-22 01:17:37,764 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-22 01:17:37,838 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-22 01:17:37,926 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-22 01:17:37,929 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODQ5MzA1N30.dM1-z-mkqWo_AZ1rZtgHnBhRw_RsJ5w3l9WNzzYJ2WwPfHn0EFhTOGP1Z69uyzaL', globalAdmin=false} - -2025-09-22 01:43:49,416 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-22 01:43:49,417 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-22 01:43:49,515 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-22 01:43:49,516 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODQ5MzA1N30.dM1-z-mkqWo_AZ1rZtgHnBhRw_RsJ5w3l9WNzzYJ2WwPfHn0EFhTOGP1Z69uyzaL', globalAdmin=false} - -2025-09-22 01:44:52,181 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-22 01:44:52,183 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODQ5MzA1N30.dM1-z-mkqWo_AZ1rZtgHnBhRw_RsJ5w3l9WNzzYJ2WwPfHn0EFhTOGP1Z69uyzaL', globalAdmin=false} - -2025-09-22 02:10:39,620 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-22 02:10:39,629 DEBUG access denied, request: GET /v3/console/core/namespace/list, reason: Code: 401, Message: User not found! Please check user exist or password is right!. - -2025-09-22 02:10:39,796 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-22 02:10:39,798 DEBUG access denied, request: GET /v3/console/ns/service/list, reason: Code: 401, Message: User not found! Please check user exist or password is right!. - -2025-09-22 02:10:44,908 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-22 02:10:44,908 DEBUG access denied, request: GET /v3/console/core/namespace/list, reason: Code: 401, Message: User not found! Please check user exist or password is right!. - -2025-09-22 02:10:45,013 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-22 02:10:45,034 DEBUG access denied, request: GET /v3/console/cs/config/list, reason: Code: 401, Message: User not found! Please check user exist or password is right!. - -2025-09-22 02:10:49,567 DEBUG auth start, request: GET /v3/console/core/namespace/list - -2025-09-22 02:10:49,591 DEBUG API is identity only, skip validate authority, request: GET /v3/console/core/namespace/list - -2025-09-22 02:10:49,643 DEBUG auth start, request: GET /v3/console/cs/config/list - -2025-09-22 02:10:49,644 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='config', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODQ5NjI0OX0.yL_8_CLjywePISs3Pt1EPC2nvurIRVgoktk5btmsGEupkx3YThFIl-r2uVBs37AM', globalAdmin=false} - -2025-09-22 02:10:52,639 DEBUG auth start, request: GET /v3/console/ns/service/list - -2025-09-22 02:10:52,641 DEBUG auth permission: Permission{resource='Resource{namespaceId='public', group='', name='', type='naming', properties={action=r}}', action='r'}, nacosUser: NacosUser{token='eyJhbGciOiJIUzM4NCJ9.eyJzdWIiOiJuYWNvcyIsImV4cCI6MTc1ODQ5NjI0OX0.yL_8_CLjywePISs3Pt1EPC2nvurIRVgoktk5btmsGEupkx3YThFIl-r2uVBs37AM', globalAdmin=false} - diff --git a/docker/nacos/standalone-logs/istio-main.log b/docker/nacos/standalone-logs/istio-main.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/k8s-sync-main.log b/docker/nacos/standalone-logs/k8s-sync-main.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/nacos-address.log b/docker/nacos/standalone-logs/nacos-address.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/nacos-cluster.log b/docker/nacos/standalone-logs/nacos-cluster.log deleted file mode 100644 index 8974d2f..0000000 --- a/docker/nacos/standalone-logs/nacos-cluster.log +++ /dev/null @@ -1,16 +0,0 @@ -2025-09-22 01:17:08,399 INFO Current addressing mode selection : StandaloneMemberLookup - -2025-09-22 01:17:08,422 INFO [ClusterRpcClientProxy] success to refresh cluster rpc client on start up,members =[] - -2025-09-22 01:17:14,059 INFO All Nacos server upgrade to upper 3.x, enabled inner api auth identity check - -2025-09-22 01:17:18,886 INFO This node is ready to provide external services - -2025-09-22 01:50:08,164 INFO Current addressing mode selection : StandaloneMemberLookup - -2025-09-22 01:50:08,195 INFO [ClusterRpcClientProxy] success to refresh cluster rpc client on start up,members =[] - -2025-09-22 01:50:13,921 INFO All Nacos server upgrade to upper 3.x, enabled inner api auth identity check - -2025-09-22 01:50:17,493 INFO This node is ready to provide external services - diff --git a/docker/nacos/standalone-logs/nacos-persistence.log b/docker/nacos/standalone-logs/nacos-persistence.log deleted file mode 100644 index 07694da..0000000 --- a/docker/nacos/standalone-logs/nacos-persistence.log +++ /dev/null @@ -1,48 +0,0 @@ -2025-09-22 01:17:05,754 INFO use local db service for init - -2025-09-22 01:17:07,215 WARN Lexical error at line 4, column 66. Encountered: after : "". - -2025-09-22 01:17:07,220 WARN Syntax error: Encountered "*" at line 1, column 1. - -2025-09-22 01:17:07,832 WARN Column 'SRC_IP' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:17:07,834 WARN Column 'SRC_IP' already exists in Table/View '"NACOS"."CONFIG_INFO"'. - -2025-09-22 01:17:07,836 WARN Column 'PUBLISH_TYPE' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:17:07,839 WARN Column 'EXT_INFO' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:17:07,841 WARN Column 'GRAY_NAME' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:17:07,841 INFO use StandaloneDatabaseOperateImpl - -2025-09-22 01:17:08,629 ERROR [db-error] DataAccessException : caused: StatementCallback; bad SQL grammar [SELECT COUNT(*) FROM config_info_beta ];caused: Table/View 'CONFIG_INFO_BETA' does not exist.;caused: Table/View 'CONFIG_INFO_BETA' does not exist.; - -2025-09-22 01:17:16,840 ERROR [db-error] DataAccessException : caused: StatementCallback; bad SQL grammar [SELECT COUNT(*) FROM config_info_beta ];caused: Table/View 'CONFIG_INFO_BETA' does not exist.;caused: Table/View 'CONFIG_INFO_BETA' does not exist.; - -2025-09-22 01:17:20,011 ERROR [db-error] DataAccessException : caused: StatementCallback; bad SQL grammar [SELECT COUNT(*) FROM config_info_beta ];caused: Table/View 'CONFIG_INFO_BETA' does not exist.;caused: Table/View 'CONFIG_INFO_BETA' does not exist.; - -2025-09-22 01:50:05,857 INFO use local db service for init - -2025-09-22 01:50:07,118 WARN Lexical error at line 4, column 66. Encountered: after : "". - -2025-09-22 01:50:07,122 WARN Syntax error: Encountered "*" at line 1, column 1. - -2025-09-22 01:50:07,606 WARN Column 'SRC_IP' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:50:07,608 WARN Column 'SRC_IP' already exists in Table/View '"NACOS"."CONFIG_INFO"'. - -2025-09-22 01:50:07,611 WARN Column 'PUBLISH_TYPE' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:50:07,613 WARN Column 'EXT_INFO' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:50:07,615 WARN Column 'GRAY_NAME' already exists in Table/View '"NACOS"."HIS_CONFIG_INFO"'. - -2025-09-22 01:50:07,615 INFO use StandaloneDatabaseOperateImpl - -2025-09-22 01:50:08,457 ERROR [db-error] DataAccessException : caused: StatementCallback; bad SQL grammar [SELECT COUNT(*) FROM config_info_beta ];caused: Table/View 'CONFIG_INFO_BETA' does not exist.;caused: Table/View 'CONFIG_INFO_BETA' does not exist.; - -2025-09-22 01:50:16,597 ERROR [db-error] DataAccessException : caused: StatementCallback; bad SQL grammar [SELECT COUNT(*) FROM config_info_beta ];caused: Table/View 'CONFIG_INFO_BETA' does not exist.;caused: Table/View 'CONFIG_INFO_BETA' does not exist.; - -2025-09-22 01:50:18,447 ERROR [db-error] DataAccessException : caused: StatementCallback; bad SQL grammar [SELECT COUNT(*) FROM config_info_beta ];caused: Table/View 'CONFIG_INFO_BETA' does not exist.;caused: Table/View 'CONFIG_INFO_BETA' does not exist.; - diff --git a/docker/nacos/standalone-logs/nacos.log b/docker/nacos/standalone-logs/nacos.log deleted file mode 100644 index 7d81d7b..0000000 --- a/docker/nacos/standalone-logs/nacos.log +++ /dev/null @@ -1,162 +0,0 @@ -2025-09-26 00:00:14,695 WARN clearHistoryConfig get scheduled - -2025-09-26 00:00:14,700 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 00:00:14,702 WARN clearConfigHistory, getBeforeStamp:2025-08-27 00:00:14.0, pageSize:1000 - -2025-09-26 00:00:14,831 WARN history config cleaner successfully - -2025-09-26 00:01:49,979 INFO [capacityManagement] start correct usage - -2025-09-26 00:01:50,271 INFO [capacityManagement] end correct usage, cost: 0.289872834s - -2025-09-26 00:10:14,832 WARN clearHistoryConfig get scheduled - -2025-09-26 00:10:14,834 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 00:10:14,844 WARN clearConfigHistory, getBeforeStamp:2025-08-27 00:10:14.0, pageSize:1000 - -2025-09-26 00:10:14,848 WARN history config cleaner successfully - -2025-09-26 00:11:50,271 INFO [capacityManagement] start correct usage - -2025-09-26 00:11:50,497 INFO [capacityManagement] end correct usage, cost: 0.226154689s - -2025-09-26 00:20:14,849 WARN clearHistoryConfig get scheduled - -2025-09-26 00:20:14,851 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 00:20:14,857 WARN clearConfigHistory, getBeforeStamp:2025-08-27 00:20:14.0, pageSize:1000 - -2025-09-26 00:20:14,865 WARN history config cleaner successfully - -2025-09-26 00:21:50,499 INFO [capacityManagement] start correct usage - -2025-09-26 00:21:50,716 INFO [capacityManagement] end correct usage, cost: 0.216267854s - -2025-09-26 00:30:14,866 WARN clearHistoryConfig get scheduled - -2025-09-26 00:30:14,867 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 00:30:14,873 WARN clearConfigHistory, getBeforeStamp:2025-08-27 00:30:14.0, pageSize:1000 - -2025-09-26 00:30:14,883 WARN history config cleaner successfully - -2025-09-26 00:31:50,716 INFO [capacityManagement] start correct usage - -2025-09-26 00:31:50,965 INFO [capacityManagement] end correct usage, cost: 0.247893682s - -2025-09-26 00:40:14,900 WARN clearHistoryConfig get scheduled - -2025-09-26 00:40:14,901 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 00:40:14,901 WARN clearConfigHistory, getBeforeStamp:2025-08-27 00:40:14.0, pageSize:1000 - -2025-09-26 00:40:14,937 WARN history config cleaner successfully - -2025-09-26 00:41:50,966 INFO [capacityManagement] start correct usage - -2025-09-26 00:41:51,252 INFO [capacityManagement] end correct usage, cost: 0.2854908s - -2025-09-26 00:50:14,938 WARN clearHistoryConfig get scheduled - -2025-09-26 00:50:14,939 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 00:50:14,939 WARN clearConfigHistory, getBeforeStamp:2025-08-27 00:50:14.0, pageSize:1000 - -2025-09-26 00:50:14,941 WARN history config cleaner successfully - -2025-09-26 00:51:51,252 INFO [capacityManagement] start correct usage - -2025-09-26 00:51:51,499 INFO [capacityManagement] end correct usage, cost: 0.246611096s - -2025-09-26 00:54:46,439 INFO [CapacityManagement] Intercepting deleteConfig operation for dataId: DevBaseUrl, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 00:54:46,666 INFO [CapacityManagement] Intercepting deleteConfig operation for dataId: prodBaseUrl, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 00:55:53,757 INFO [CapacityManagement] Intercepting publishConfig operation for dataId: visualizerConfig, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 00:55:53,759 INFO [CapacityManagement] Handling insert operation for group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:00:14,942 WARN clearHistoryConfig get scheduled - -2025-09-26 01:00:14,943 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 01:00:14,943 WARN clearConfigHistory, getBeforeStamp:2025-08-27 01:00:14.0, pageSize:1000 - -2025-09-26 01:00:14,944 WARN history config cleaner successfully - -2025-09-26 01:01:51,499 INFO [capacityManagement] start correct usage - -2025-09-26 01:01:51,732 INFO [capacityManagement] end correct usage, cost: 0.231935196s - -2025-09-26 01:02:55,106 INFO [CapacityManagement] Intercepting deleteConfig operation for dataId: visualizerConfig, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:08:12,863 INFO [CapacityManagement] Intercepting publishConfig operation for dataId: apiUrlList, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:08:12,870 INFO [CapacityManagement] Handling insert operation for group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:08:35,854 INFO [CapacityManagement] Intercepting publishConfig operation for dataId: apiUrlList, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:10:04,437 INFO [CapacityManagement] Intercepting deleteConfig operation for dataId: apiUrlList, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:10:14,944 WARN clearHistoryConfig get scheduled - -2025-09-26 01:10:14,944 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 01:10:14,947 WARN clearConfigHistory, getBeforeStamp:2025-08-27 01:10:14.0, pageSize:1000 - -2025-09-26 01:10:14,949 WARN history config cleaner successfully - -2025-09-26 01:10:58,614 INFO [CapacityManagement] Intercepting publishConfig operation for dataId: httpTimeOut, group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:10:58,615 INFO [CapacityManagement] Handling insert operation for group: DEFAULT_GROUP, namespaceId: public - -2025-09-26 01:11:51,733 INFO [capacityManagement] start correct usage - -2025-09-26 01:11:52,019 INFO [capacityManagement] end correct usage, cost: 0.285678971s - -2025-09-26 01:20:14,951 WARN clearHistoryConfig get scheduled - -2025-09-26 01:20:14,954 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 01:20:14,956 WARN clearConfigHistory, getBeforeStamp:2025-08-27 01:20:14.0, pageSize:1000 - -2025-09-26 01:20:14,959 WARN history config cleaner successfully - -2025-09-26 01:21:52,020 INFO [capacityManagement] start correct usage - -2025-09-26 01:21:52,253 INFO [capacityManagement] end correct usage, cost: 0.232666291s - -2025-09-26 01:30:14,959 WARN clearHistoryConfig get scheduled - -2025-09-26 01:30:14,960 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 01:30:14,961 WARN clearConfigHistory, getBeforeStamp:2025-08-27 01:30:14.0, pageSize:1000 - -2025-09-26 01:30:14,964 WARN history config cleaner successfully - -2025-09-26 01:31:52,253 INFO [capacityManagement] start correct usage - -2025-09-26 01:31:52,489 INFO [capacityManagement] end correct usage, cost: 0.234733778s - -2025-09-26 01:40:14,965 WARN clearHistoryConfig get scheduled - -2025-09-26 01:40:14,966 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 01:40:14,970 WARN clearConfigHistory, getBeforeStamp:2025-08-27 01:40:14.0, pageSize:1000 - -2025-09-26 01:40:14,974 WARN history config cleaner successfully - -2025-09-26 01:41:52,489 INFO [capacityManagement] start correct usage - -2025-09-26 01:41:52,728 INFO [capacityManagement] end correct usage, cost: 0.238663473s - -2025-09-26 01:50:14,976 WARN clearHistoryConfig get scheduled - -2025-09-26 01:50:14,976 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-26 01:50:14,977 WARN clearConfigHistory, getBeforeStamp:2025-08-27 01:50:14.0, pageSize:1000 - -2025-09-26 01:50:14,977 WARN history config cleaner successfully - diff --git a/docker/nacos/standalone-logs/nacos.log.2025-09-22.0 b/docker/nacos/standalone-logs/nacos.log.2025-09-22.0 deleted file mode 100644 index 4655bac..0000000 --- a/docker/nacos/standalone-logs/nacos.log.2025-09-22.0 +++ /dev/null @@ -1,1001 +0,0 @@ -2025-09-22 01:17:00,965 INFO Starting NacosBootstrap v3.0.3 using Java 17.0.16 with PID 1 (/home/nacos/target/nacos-server.jar started by root in /home/nacos) - -2025-09-22 01:17:00,966 INFO The following 1 profile is active: "standalone" - -2025-09-22 01:17:01,250 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.config.server, filter com.alibaba.nacos.config.server.filter.ConfigEnabledFilter - -2025-09-22 01:17:01,252 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.naming, filter com.alibaba.nacos.naming.config.NamingEnabledFilter - -2025-09-22 01:17:01,252 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.ai, filter com.alibaba.nacos.ai.config.AiEnabledFilter - -2025-09-22 01:17:01,253 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.istio, filter com.alibaba.nacos.istio.config.IstioEnabledFilter - -2025-09-22 01:17:01,253 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.k8s.sync, filter com.alibaba.nacos.k8s.sync.K8sSyncEnabledFilter - -2025-09-22 01:17:01,556 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.bootstrap.NacosBootstrap to avoid duplicate scan - -2025-09-22 01:17:01,561 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.Nacos to avoid duplicate scan - -2025-09-22 01:17:01,563 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.console.NacosConsole to avoid duplicate scan - -2025-09-22 01:17:01,680 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.config.server.Config to avoid duplicate scan - -2025-09-22 01:17:01,960 INFO Nacos Server is starting... - -2025-09-22 01:17:02,004 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.naming.NamingApp to avoid duplicate scan - -2025-09-22 01:17:02,085 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.cmdb.CmdbApp to avoid duplicate scan - -2025-09-22 01:17:02,186 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.istio.IstioApp to avoid duplicate scan - -2025-09-22 01:17:02,186 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,187 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,187 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,188 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,188 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,188 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,189 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,189 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,189 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,190 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,191 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,191 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,192 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,192 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,193 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,193 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,194 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,194 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,195 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,195 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,196 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,197 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,198 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,198 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,199 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,199 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,200 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,200 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,200 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,201 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,201 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,201 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,202 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,202 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,202 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,203 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,203 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,203 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,204 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,204 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,204 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,204 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,205 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,205 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,205 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,206 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,206 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,207 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,207 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,208 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,209 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,209 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,210 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,210 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,211 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,212 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,213 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,214 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,214 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,215 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,216 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,217 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,218 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:17:02,962 INFO Nacos Server is starting... - -2025-09-22 01:17:03,086 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.prometheus.PrometheusApp to avoid duplicate scan - -2025-09-22 01:17:03,089 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,090 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,090 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,091 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,091 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,093 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,093 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:17:03,094 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.NacosServerWebApplication to avoid duplicate scan - -2025-09-22 01:17:03,094 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.mcpregistry.NacosMcpRegistry to avoid duplicate scan - -2025-09-22 01:17:03,964 INFO Nacos Server is starting... - -2025-09-22 01:17:04,965 INFO Nacos Server is starting... - -2025-09-22 01:17:05,966 INFO Nacos Server is starting... - -2025-09-22 01:17:06,066 INFO HikariPool-1 - Starting... - -2025-09-22 01:17:06,073 WARN Registered driver with driverClassName=org.apache.derby.jdbc.EmbeddedDriver was not found, trying direct instantiation. - -2025-09-22 01:17:06,967 INFO Nacos Server is starting... - -2025-09-22 01:17:07,125 INFO HikariPool-1 - Driver does not support get/set network timeout for connections. (Feature not implemented: No details.) - -2025-09-22 01:17:07,128 INFO HikariPool-1 - Start completed. - -2025-09-22 01:17:07,878 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoBetaMapperByMySql) datasource(mysql) tableName(config_info_beta) successfully. - -2025-09-22 01:17:07,879 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoMapperByMySql) datasource(mysql) tableName(config_info) successfully. - -2025-09-22 01:17:07,879 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoTagMapperByMySql) datasource(mysql) tableName(config_info_tag) successfully. - -2025-09-22 01:17:07,879 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoGrayMapperByMySql) datasource(mysql) tableName(config_info_gray) successfully. - -2025-09-22 01:17:07,879 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigTagsRelationMapperByMySql) datasource(mysql) tableName(config_tags_relation) successfully. - -2025-09-22 01:17:07,879 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.HistoryConfigInfoMapperByMySql) datasource(mysql) tableName(his_config_info) successfully. - -2025-09-22 01:17:07,879 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.TenantInfoMapperByMySql) datasource(mysql) tableName(tenant_info) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.TenantCapacityMapperByMySql) datasource(mysql) tableName(tenant_capacity) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.GroupCapacityMapperByMysql) datasource(mysql) tableName(group_capacity) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigMigrateMapperByMysql) datasource(mysql) tableName(migrate_config) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoBetaMapperByDerby) datasource(derby) tableName(config_info_beta) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoMapperByDerby) datasource(derby) tableName(config_info) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoTagMapperByDerby) datasource(derby) tableName(config_info_tag) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoGrayMapperByDerby) datasource(derby) tableName(config_info_gray) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoTagsRelationMapperByDerby) datasource(derby) tableName(config_tags_relation) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.HistoryConfigInfoMapperByDerby) datasource(derby) tableName(his_config_info) successfully. - -2025-09-22 01:17:07,880 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.TenantInfoMapperByDerby) datasource(derby) tableName(tenant_info) successfully. - -2025-09-22 01:17:07,881 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.TenantCapacityMapperByDerby) datasource(derby) tableName(tenant_capacity) successfully. - -2025-09-22 01:17:07,881 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.GroupCapacityMapperByDerby) datasource(derby) tableName(group_capacity) successfully. - -2025-09-22 01:17:07,881 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigMigrateMapperByDerby) datasource(derby) tableName(migrate_config) successfully. - -2025-09-22 01:17:07,971 INFO Nacos Server is starting... - -2025-09-22 01:17:08,035 INFO ConfigQueryHandlerChain has been initialized successfully with chain: nacos - -2025-09-22 01:17:08,387 INFO Nacos-related cluster resource initialization - -2025-09-22 01:17:08,397 INFO Load com.alibaba.nacos.core.ability.RemoteAbilityInitializer for ServerAbilityInitializer - -2025-09-22 01:17:08,397 INFO Load com.alibaba.nacos.naming.ability.NamingAbilityInitializer for ServerAbilityInitializer - -2025-09-22 01:17:08,400 INFO The cluster resource is initialized - -2025-09-22 01:17:08,631 INFO Get configCompatible config from env, ConfigCompatibleConfig{namespaceCompatibleMode=true} - -2025-09-22 01:17:08,753 INFO [migrate] start migrate config namespace - -2025-09-22 01:17:08,765 INFO [migrate] migrating config namespace from empty to public, finished:0 - -2025-09-22 01:17:08,780 INFO [migrate] syncing config namespace from empty to public, finished:0 - -2025-09-22 01:17:08,781 INFO [migrate] syncing config namespace from public to empty, finished:0 - -2025-09-22 01:17:08,788 INFO [migrate] migrating config gray namespace from empty to public, finished:0 - -2025-09-22 01:17:08,796 INFO [migrate] syncing config gray namespace from empty to public, finished:0 - -2025-09-22 01:17:08,797 INFO [migrate] syncing config gray namespace from public to empty, finished:0 - -2025-09-22 01:17:08,797 INFO [migrate] finish migrate config namespacetotal time taken: 166 ms - -2025-09-22 01:17:08,816 INFO Get historyConfigCleaner config from env, activeHistoryConfigCleaner{ activeHistoryConfigCleaner=nacos} - -2025-09-22 01:17:08,964 INFO Ready to get current node abilities... - -2025-09-22 01:17:08,970 INFO Ready to initialize current node abilities, support modes: [SDK_CLIENT, SERVER, CLUSTER_CLIENT] - -2025-09-22 01:17:08,972 INFO Nacos Server is starting... - -2025-09-22 01:17:08,974 INFO Initialize current abilities finish... - -2025-09-22 01:17:08,975 INFO Ready to get current node abilities... - -2025-09-22 01:17:08,975 INFO Ready to initialize current node abilities, support modes: [SDK_CLIENT] - -2025-09-22 01:17:08,976 INFO Initialize current abilities finish... - -2025-09-22 01:17:08,979 INFO [AbilityControlManager] Successfully initialize AbilityControlManager - -2025-09-22 01:17:08,989 INFO Get NacosConsoleAuth config from env, NacosConsoleAuthConfig{authEnabled=true, nacosAuthSystemType='nacos'} - -2025-09-22 01:17:08,996 INFO Get NacosServerAdminAuth config from env, NacosServerAdminAuthConfig{authEnabled=true, nacosAuthSystemType='nacos', serverIdentityKey='serverIdentity', serverIdentityValue='security'} - -2025-09-22 01:17:09,009 INFO Get NacosServerAuth config from env, NacosServerAuthConfig{authEnabled=false, nacosAuthSystemType='nacos', serverIdentityKey='serverIdentity', serverIdentityValue='security', authPluginProperties={nacos={token.expire.seconds=18000, token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789, token.cache.enable=false}}} - -2025-09-22 01:17:09,012 INFO Not found ServerIdentityChecker implementation from SPI, use default. - -2025-09-22 01:17:09,977 INFO Nacos Server is starting... - -2025-09-22 01:17:10,980 INFO Nacos Server is starting... - -2025-09-22 01:17:11,876 INFO Creating McpCacheIndex bean with maxSize=10000, expireTime=3600s, cleanupInterval=300s - -2025-09-22 01:17:11,883 INFO Creating ScheduledExecutorService for MCP cache with syncInterval=300s - -2025-09-22 01:17:11,892 INFO Creating CachedMcpServerIndex bean with cache enabled - -2025-09-22 01:17:11,894 INFO Cache sync task started with interval: 300s - -2025-09-22 01:17:11,895 INFO CachedMcpServerIndex initialized with cacheEnabled=true, syncInterval=300s - -2025-09-22 01:17:11,981 INFO Nacos Server is starting... - -2025-09-22 01:17:12,420 WARN The secret Key currently in use is not a standard Base64 encoding and will no longer be supported in future versions; - -2025-09-22 01:17:12,592 WARN Global AuthenticationManager configured with an AuthenticationProvider bean. UserDetailsService beans will not be used by Spring Security for automatically configuring username/password login. Consider removing the AuthenticationProvider bean. Alternatively, consider using the UserDetailsService in a manually instantiated DaoAuthenticationProvider. If the current configuration is intentional, to turn off this warning, increase the logging level of 'org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer' to ERROR - -2025-09-22 01:17:12,982 INFO Nacos Server is starting... - -2025-09-22 01:17:13,983 INFO Nacos Server is starting... - -2025-09-22 01:17:14,064 INFO Started NacosBootstrap in 15.429 seconds (process running for 16.509) - -2025-09-22 01:17:14,065 INFO Nacos started successfully in stand alone mode with embedded storage in 15380 ms - -2025-09-22 01:17:14,086 INFO Spring Environment's active profiles : [standalone] in standalone mode : true - -2025-09-22 01:17:14,140 INFO The following 1 profile is active: "standalone" - -2025-09-22 01:17:14,160 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.config.server, filter com.alibaba.nacos.config.server.filter.ConfigEnabledFilter - -2025-09-22 01:17:14,160 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.naming, filter com.alibaba.nacos.naming.config.NamingEnabledFilter - -2025-09-22 01:17:14,160 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.ai, filter com.alibaba.nacos.ai.config.AiEnabledFilter - -2025-09-22 01:17:14,160 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.istio, filter com.alibaba.nacos.istio.config.IstioEnabledFilter - -2025-09-22 01:17:14,160 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.k8s.sync, filter com.alibaba.nacos.k8s.sync.K8sSyncEnabledFilter - -2025-09-22 01:17:15,141 INFO Nacos Server API is starting... - -2025-09-22 01:17:15,640 WARN Bean 'nacosWebBeanPostProcessorConfiguration' of type [com.alibaba.nacos.server.NacosWebBeanPostProcessorConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [nacosDuplicateSpringBeanPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. - -2025-09-22 01:17:16,142 INFO Nacos Server API is starting... - -2025-09-22 01:17:16,407 INFO Tomcat initialized with port 8848 (http) - -2025-09-22 01:17:16,435 INFO Starting service [Tomcat] - -2025-09-22 01:17:16,435 INFO Starting Servlet engine: [Apache Tomcat/10.1.39] - -2025-09-22 01:17:16,492 INFO Initializing Spring embedded WebApplicationContext - -2025-09-22 01:17:16,492 INFO Root WebApplicationContext: initialization completed in 2343 ms - -2025-09-22 01:17:16,893 INFO Get ApiCompatibility config from env, ApiCompatibilityConfig{clientApiCompatibility=true, consoleApiCompatibility=false, adminApiCompatibility=false} - -2025-09-22 01:17:17,081 INFO Adding welcome page: class path resource [static/index.html] - -2025-09-22 01:17:17,142 INFO Nacos Server API is starting... - -2025-09-22 01:17:18,145 INFO Nacos Server API is starting... - -2025-09-22 01:17:18,689 INFO Exposing 1 endpoint beneath base path '/actuator' - -2025-09-22 01:17:18,883 INFO Tomcat started on port 8848 (http) with context path '/nacos' - -2025-09-22 01:17:18,924 INFO Started NacosBootstrap in 4.848 seconds (process running for 21.369) - -2025-09-22 01:17:18,924 INFO Nacos Server API started successfully in 4848 ms - -2025-09-22 01:17:18,944 INFO Spring Environment's active profiles : [standalone] in standalone mode : true - -2025-09-22 01:17:18,986 INFO The following 1 profile is active: "standalone" - -2025-09-22 01:17:19,767 WARN Bean 'nacosConsoleBeanPostProcessorConfiguration' of type [com.alibaba.nacos.console.config.NacosConsoleBeanPostProcessorConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [nacosDuplicateSpringBeanPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. - -2025-09-22 01:17:19,872 INFO Tomcat initialized with port 8080 (http) - -2025-09-22 01:17:19,874 INFO Starting service [Tomcat] - -2025-09-22 01:17:19,875 INFO Starting Servlet engine: [Apache Tomcat/10.1.39] - -2025-09-22 01:17:19,877 INFO Initializing Spring embedded WebApplicationContext - -2025-09-22 01:17:19,878 INFO Root WebApplicationContext: initialization completed in 887 ms - -2025-09-22 01:17:19,987 INFO Nacos Console is starting... - -2025-09-22 01:17:20,149 INFO Adding welcome page: class path resource [static/index.html] - -2025-09-22 01:17:20,591 INFO Exposing 1 endpoint beneath base path '/actuator' - -2025-09-22 01:17:20,659 INFO Tomcat started on port 8080 (http) with context path '/' - -2025-09-22 01:17:20,682 INFO Started NacosBootstrap in 1.74 seconds (process running for 23.127) - -2025-09-22 01:17:20,682 INFO Nacos Console started successfully in 1741 ms - -2025-09-22 01:17:23,833 INFO Initializing Spring DispatcherServlet 'dispatcherServlet' - -2025-09-22 01:17:23,833 INFO Initializing Servlet 'dispatcherServlet' - -2025-09-22 01:17:23,836 INFO Completed initialization in 3 ms - -2025-09-22 01:17:23,882 INFO Get ParamCheck config from env, ParamCheckConfig{paramCheckEnabled=true, activeParamChecker=default} - -2025-09-22 01:17:24,427 INFO [AuthPluginManager] Load AuthPluginService(class com.alibaba.nacos.plugin.auth.impl.NacosAuthPluginService) AuthServiceName(nacos) successfully. - -2025-09-22 01:17:24,428 INFO [AuthPluginManager] Load AuthPluginService(class com.alibaba.nacos.plugin.auth.impl.LdapAuthPluginService) AuthServiceName(ldap) successfully. - -2025-09-22 01:17:25,530 INFO Initializing Spring DispatcherServlet 'dispatcherServlet' - -2025-09-22 01:17:25,531 INFO Initializing Servlet 'dispatcherServlet' - -2025-09-22 01:17:25,533 INFO Completed initialization in 2 ms - -2025-09-22 01:17:30,004 INFO Get topN config from env, TopNConfig{enabled=true, topNCount=10, internalMs=0} - -2025-09-22 01:18:14,694 INFO Get Push config from env, PushConfig{pushTaskDelay=500, pushTaskTimeout=5000, pushTaskRetryDelay=1000} - -2025-09-22 01:18:19,632 INFO Get NamingClient config from env, ClientConfig{clientExpiredTime=180000} - -2025-09-22 01:27:07,990 INFO [capacityManagement] start correct usage - -2025-09-22 01:27:08,013 INFO [capacityManagement] end correct usage, cost: 0.01204827s - -2025-09-22 01:27:08,818 WARN clearHistoryConfig get scheduled - -2025-09-22 01:27:08,818 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-22 01:27:08,820 WARN clearConfigHistory, getBeforeStamp:2025-08-23 01:27:08.0, pageSize:1000 - -2025-09-22 01:27:08,861 WARN history config cleaner successfully - -2025-09-22 01:37:08,013 INFO [capacityManagement] start correct usage - -2025-09-22 01:37:08,021 INFO [capacityManagement] end correct usage, cost: 0.007269226s - -2025-09-22 01:37:08,862 WARN clearHistoryConfig get scheduled - -2025-09-22 01:37:08,862 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-22 01:37:08,862 WARN clearConfigHistory, getBeforeStamp:2025-08-23 01:37:08.0, pageSize:1000 - -2025-09-22 01:37:08,864 WARN history config cleaner successfully - -2025-09-22 01:47:08,021 INFO [capacityManagement] start correct usage - -2025-09-22 01:47:08,022 INFO [capacityManagement] end correct usage, cost: 4.08577E-4s - -2025-09-22 01:47:08,864 WARN clearHistoryConfig get scheduled - -2025-09-22 01:47:08,865 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-22 01:47:08,865 WARN clearConfigHistory, getBeforeStamp:2025-08-23 01:47:08.0, pageSize:1000 - -2025-09-22 01:47:08,866 WARN history config cleaner successfully - -2025-09-22 01:49:55,738 WARN [WatchFileCenter] start close - -2025-09-22 01:49:55,738 INFO [ThreadPoolManager] Start destroying ThreadPool - -2025-09-22 01:49:55,742 INFO [NotifyCenter] Start destroying Publisher - -2025-09-22 01:49:55,742 WARN [WatchFileCenter] start to shutdown this watcher which is watch : /home/nacos/conf - -2025-09-22 01:49:55,743 INFO [NotifyCenter] Completed destruction of Publisher - -2025-09-22 01:49:55,742 INFO [HttpClientBeanHolder] Start destroying common HttpClient - -2025-09-22 01:49:55,745 WARN [WatchFileCenter] already closed - -2025-09-22 01:49:55,751 INFO [HttpClientBeanHolder] Completed destruction of HttpClient - -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,744 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,744 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,752 INFO Commencing graceful shutdown. Waiting for active requests to complete - -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,744 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,744 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,743 ERROR Event listener exception : - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.notify.DefaultPublisher.openEventHandler(DefaultPublisher.java:111) - at com.alibaba.nacos.common.notify.DefaultPublisher.run(DefaultPublisher.java:95) -2025-09-22 01:49:55,762 INFO Graceful shutdown complete - -2025-09-22 01:49:55,788 INFO Commencing graceful shutdown. Waiting for active requests to complete - -2025-09-22 01:49:55,790 INFO Graceful shutdown complete - -2025-09-22 01:50:01,675 INFO Starting NacosBootstrap v3.0.3 using Java 17.0.16 with PID 1 (/home/nacos/target/nacos-server.jar started by root in /home/nacos) - -2025-09-22 01:50:01,676 INFO The following 1 profile is active: "standalone" - -2025-09-22 01:50:01,976 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.config.server, filter com.alibaba.nacos.config.server.filter.ConfigEnabledFilter - -2025-09-22 01:50:01,977 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.naming, filter com.alibaba.nacos.naming.config.NamingEnabledFilter - -2025-09-22 01:50:01,977 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.ai, filter com.alibaba.nacos.ai.config.AiEnabledFilter - -2025-09-22 01:50:01,989 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.istio, filter com.alibaba.nacos.istio.config.IstioEnabledFilter - -2025-09-22 01:50:01,989 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.k8s.sync, filter com.alibaba.nacos.k8s.sync.K8sSyncEnabledFilter - -2025-09-22 01:50:02,235 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.bootstrap.NacosBootstrap to avoid duplicate scan - -2025-09-22 01:50:02,238 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.Nacos to avoid duplicate scan - -2025-09-22 01:50:02,239 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.console.NacosConsole to avoid duplicate scan - -2025-09-22 01:50:02,323 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.config.server.Config to avoid duplicate scan - -2025-09-22 01:50:02,485 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.naming.NamingApp to avoid duplicate scan - -2025-09-22 01:50:02,534 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.cmdb.CmdbApp to avoid duplicate scan - -2025-09-22 01:50:02,602 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.istio.IstioApp to avoid duplicate scan - -2025-09-22 01:50:02,602 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,603 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,604 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,605 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,605 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,606 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,606 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,606 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,607 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,608 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,608 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,611 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,612 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,613 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,614 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,614 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,615 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,616 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,616 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,619 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,620 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,621 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,621 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,622 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,623 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,624 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,625 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,625 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,626 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,626 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,626 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,627 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,628 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,628 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,628 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,629 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,629 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,630 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,630 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,630 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,631 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,631 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,632 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,633 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,633 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,634 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,634 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,635 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,636 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,637 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,637 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,638 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,638 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,639 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,640 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,641 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,641 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,642 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,642 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,643 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,644 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,644 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,645 WARN Istio module disabled because set nacos.extension.naming.istio.enabled as false - -2025-09-22 01:50:02,669 INFO Nacos Server is starting... - -2025-09-22 01:50:03,408 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.prometheus.PrometheusApp to avoid duplicate scan - -2025-09-22 01:50:03,412 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,413 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,413 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,414 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,414 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,416 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,416 WARN K8s Sync module disabled because set nacos.k8s.sync.enabled as false - -2025-09-22 01:50:03,417 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.NacosServerWebApplication to avoid duplicate scan - -2025-09-22 01:50:03,417 INFO Skip @SpringBootApplication annotation for class com.alibaba.nacos.mcpregistry.NacosMcpRegistry to avoid duplicate scan - -2025-09-22 01:50:03,670 INFO Nacos Server is starting... - -2025-09-22 01:50:04,671 INFO Nacos Server is starting... - -2025-09-22 01:50:05,672 INFO Nacos Server is starting... - -2025-09-22 01:50:06,195 INFO HikariPool-1 - Starting... - -2025-09-22 01:50:06,203 WARN Registered driver with driverClassName=org.apache.derby.jdbc.EmbeddedDriver was not found, trying direct instantiation. - -2025-09-22 01:50:06,673 INFO Nacos Server is starting... - -2025-09-22 01:50:07,044 INFO HikariPool-1 - Driver does not support get/set network timeout for connections. (Feature not implemented: No details.) - -2025-09-22 01:50:07,048 INFO HikariPool-1 - Start completed. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoBetaMapperByMySql) datasource(mysql) tableName(config_info_beta) successfully. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoMapperByMySql) datasource(mysql) tableName(config_info) successfully. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoTagMapperByMySql) datasource(mysql) tableName(config_info_tag) successfully. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigInfoGrayMapperByMySql) datasource(mysql) tableName(config_info_gray) successfully. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigTagsRelationMapperByMySql) datasource(mysql) tableName(config_tags_relation) successfully. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.HistoryConfigInfoMapperByMySql) datasource(mysql) tableName(his_config_info) successfully. - -2025-09-22 01:50:07,654 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.TenantInfoMapperByMySql) datasource(mysql) tableName(tenant_info) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.TenantCapacityMapperByMySql) datasource(mysql) tableName(tenant_capacity) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.GroupCapacityMapperByMysql) datasource(mysql) tableName(group_capacity) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.mysql.ConfigMigrateMapperByMysql) datasource(mysql) tableName(migrate_config) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoBetaMapperByDerby) datasource(derby) tableName(config_info_beta) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoMapperByDerby) datasource(derby) tableName(config_info) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoTagMapperByDerby) datasource(derby) tableName(config_info_tag) successfully. - -2025-09-22 01:50:07,655 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoGrayMapperByDerby) datasource(derby) tableName(config_info_gray) successfully. - -2025-09-22 01:50:07,656 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigInfoTagsRelationMapperByDerby) datasource(derby) tableName(config_tags_relation) successfully. - -2025-09-22 01:50:07,656 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.HistoryConfigInfoMapperByDerby) datasource(derby) tableName(his_config_info) successfully. - -2025-09-22 01:50:07,656 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.TenantInfoMapperByDerby) datasource(derby) tableName(tenant_info) successfully. - -2025-09-22 01:50:07,656 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.TenantCapacityMapperByDerby) datasource(derby) tableName(tenant_capacity) successfully. - -2025-09-22 01:50:07,656 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.GroupCapacityMapperByDerby) datasource(derby) tableName(group_capacity) successfully. - -2025-09-22 01:50:07,656 INFO [MapperManager] Load Mapper(class com.alibaba.nacos.plugin.datasource.impl.derby.ConfigMigrateMapperByDerby) datasource(derby) tableName(migrate_config) successfully. - -2025-09-22 01:50:07,674 INFO Nacos Server is starting... - -2025-09-22 01:50:07,801 INFO ConfigQueryHandlerChain has been initialized successfully with chain: nacos - -2025-09-22 01:50:08,148 INFO Nacos-related cluster resource initialization - -2025-09-22 01:50:08,163 INFO Load com.alibaba.nacos.core.ability.RemoteAbilityInitializer for ServerAbilityInitializer - -2025-09-22 01:50:08,163 INFO Load com.alibaba.nacos.naming.ability.NamingAbilityInitializer for ServerAbilityInitializer - -2025-09-22 01:50:08,167 INFO The cluster resource is initialized - -2025-09-22 01:50:08,458 INFO Get configCompatible config from env, ConfigCompatibleConfig{namespaceCompatibleMode=true} - -2025-09-22 01:50:08,580 INFO [migrate] start migrate config namespace - -2025-09-22 01:50:08,597 INFO [migrate] migrating config namespace from empty to public, finished:0 - -2025-09-22 01:50:08,617 INFO [migrate] syncing config namespace from empty to public, finished:0 - -2025-09-22 01:50:08,618 INFO [migrate] syncing config namespace from public to empty, finished:0 - -2025-09-22 01:50:08,630 INFO [migrate] migrating config gray namespace from empty to public, finished:0 - -2025-09-22 01:50:08,641 INFO [migrate] syncing config gray namespace from empty to public, finished:0 - -2025-09-22 01:50:08,642 INFO [migrate] syncing config gray namespace from public to empty, finished:0 - -2025-09-22 01:50:08,642 INFO [migrate] finish migrate config namespacetotal time taken: 184 ms - -2025-09-22 01:50:08,670 INFO Get historyConfigCleaner config from env, activeHistoryConfigCleaner{ activeHistoryConfigCleaner=nacos} - -2025-09-22 01:50:08,675 INFO Nacos Server is starting... - -2025-09-22 01:50:08,844 INFO Ready to get current node abilities... - -2025-09-22 01:50:08,850 INFO Ready to initialize current node abilities, support modes: [CLUSTER_CLIENT, SDK_CLIENT, SERVER] - -2025-09-22 01:50:08,852 INFO Initialize current abilities finish... - -2025-09-22 01:50:08,853 INFO Ready to get current node abilities... - -2025-09-22 01:50:08,854 INFO Ready to initialize current node abilities, support modes: [SDK_CLIENT] - -2025-09-22 01:50:08,854 INFO Initialize current abilities finish... - -2025-09-22 01:50:08,857 INFO [AbilityControlManager] Successfully initialize AbilityControlManager - -2025-09-22 01:50:08,866 INFO Get NacosConsoleAuth config from env, NacosConsoleAuthConfig{authEnabled=true, nacosAuthSystemType='nacos'} - -2025-09-22 01:50:08,872 INFO Get NacosServerAdminAuth config from env, NacosServerAdminAuthConfig{authEnabled=true, nacosAuthSystemType='nacos', serverIdentityKey='serverIdentity', serverIdentityValue='security'} - -2025-09-22 01:50:08,883 INFO Get NacosServerAuth config from env, NacosServerAuthConfig{authEnabled=false, nacosAuthSystemType='nacos', serverIdentityKey='serverIdentity', serverIdentityValue='security', authPluginProperties={nacos={token.expire.seconds=18000, token.secret.key=SecretKey012345678901234567890123456789012345678901234567890123456789, token.cache.enable=false}}} - -2025-09-22 01:50:08,886 INFO Not found ServerIdentityChecker implementation from SPI, use default. - -2025-09-22 01:50:09,676 INFO Nacos Server is starting... - -2025-09-22 01:50:10,679 INFO Nacos Server is starting... - -2025-09-22 01:50:11,547 INFO Creating McpCacheIndex bean with maxSize=10000, expireTime=3600s, cleanupInterval=300s - -2025-09-22 01:50:11,553 INFO Creating ScheduledExecutorService for MCP cache with syncInterval=300s - -2025-09-22 01:50:11,579 INFO Creating CachedMcpServerIndex bean with cache enabled - -2025-09-22 01:50:11,582 INFO Cache sync task started with interval: 300s - -2025-09-22 01:50:11,582 INFO CachedMcpServerIndex initialized with cacheEnabled=true, syncInterval=300s - -2025-09-22 01:50:11,680 INFO Nacos Server is starting... - -2025-09-22 01:50:12,083 WARN The secret Key currently in use is not a standard Base64 encoding and will no longer be supported in future versions; - -2025-09-22 01:50:12,303 WARN Global AuthenticationManager configured with an AuthenticationProvider bean. UserDetailsService beans will not be used by Spring Security for automatically configuring username/password login. Consider removing the AuthenticationProvider bean. Alternatively, consider using the UserDetailsService in a manually instantiated DaoAuthenticationProvider. If the current configuration is intentional, to turn off this warning, increase the logging level of 'org.springframework.security.config.annotation.authentication.configuration.InitializeUserDetailsBeanManagerConfigurer' to ERROR - -2025-09-22 01:50:12,684 INFO Nacos Server is starting... - -2025-09-22 01:50:13,688 INFO Nacos Server is starting... - -2025-09-22 01:50:13,924 INFO Started NacosBootstrap in 14.345 seconds (process running for 15.728) - -2025-09-22 01:50:13,925 INFO Nacos started successfully in stand alone mode with embedded storage in 14318 ms - -2025-09-22 01:50:13,944 INFO Spring Environment's active profiles : [standalone] in standalone mode : true - -2025-09-22 01:50:13,992 INFO The following 1 profile is active: "standalone" - -2025-09-22 01:50:14,009 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.config.server, filter com.alibaba.nacos.config.server.filter.ConfigEnabledFilter - -2025-09-22 01:50:14,009 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.naming, filter com.alibaba.nacos.naming.config.NamingEnabledFilter - -2025-09-22 01:50:14,009 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.ai, filter com.alibaba.nacos.ai.config.AiEnabledFilter - -2025-09-22 01:50:14,009 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.istio, filter com.alibaba.nacos.istio.config.IstioEnabledFilter - -2025-09-22 01:50:14,009 INFO Load Nacos package exclude filter success, package prefix com.alibaba.nacos.k8s.sync, filter com.alibaba.nacos.k8s.sync.K8sSyncEnabledFilter - -2025-09-22 01:50:14,992 INFO Nacos Server API is starting... - -2025-09-22 01:50:15,643 WARN Bean 'nacosWebBeanPostProcessorConfiguration' of type [com.alibaba.nacos.server.NacosWebBeanPostProcessorConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [nacosDuplicateSpringBeanPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. - -2025-09-22 01:50:15,993 INFO Nacos Server API is starting... - -2025-09-22 01:50:16,107 INFO Tomcat initialized with port 8848 (http) - -2025-09-22 01:50:16,127 INFO Starting service [Tomcat] - -2025-09-22 01:50:16,127 INFO Starting Servlet engine: [Apache Tomcat/10.1.39] - -2025-09-22 01:50:16,178 INFO Initializing Spring embedded WebApplicationContext - -2025-09-22 01:50:16,178 INFO Root WebApplicationContext: initialization completed in 2180 ms - -2025-09-22 01:50:16,644 INFO Get ApiCompatibility config from env, ApiCompatibilityConfig{clientApiCompatibility=true, consoleApiCompatibility=false, adminApiCompatibility=false} - -2025-09-22 01:50:16,807 INFO Adding welcome page: class path resource [static/index.html] - -2025-09-22 01:50:16,994 INFO Nacos Server API is starting... - -2025-09-22 01:50:17,430 INFO Exposing 1 endpoint beneath base path '/actuator' - -2025-09-22 01:50:17,491 INFO Tomcat started on port 8848 (http) with context path '/nacos' - -2025-09-22 01:50:17,515 INFO Started NacosBootstrap in 3.581 seconds (process running for 19.318) - -2025-09-22 01:50:17,515 INFO Nacos Server API started successfully in 3581 ms - -2025-09-22 01:50:17,528 INFO Spring Environment's active profiles : [standalone] in standalone mode : true - -2025-09-22 01:50:17,559 INFO The following 1 profile is active: "standalone" - -2025-09-22 01:50:18,169 WARN Bean 'nacosConsoleBeanPostProcessorConfiguration' of type [com.alibaba.nacos.console.config.NacosConsoleBeanPostProcessorConfiguration$$SpringCGLIB$$0] is not eligible for getting processed by all BeanPostProcessors (for example: not eligible for auto-proxying). The currently created BeanPostProcessor [nacosDuplicateSpringBeanPostProcessor] is declared through a non-static factory method on that class; consider declaring it as static instead. - -2025-09-22 01:50:18,218 INFO Initializing Spring DispatcherServlet 'dispatcherServlet' - -2025-09-22 01:50:18,218 INFO Initializing Servlet 'dispatcherServlet' - -2025-09-22 01:50:18,223 INFO Completed initialization in 4 ms - -2025-09-22 01:50:18,275 INFO Tomcat initialized with port 8080 (http) - -2025-09-22 01:50:18,277 INFO Starting service [Tomcat] - -2025-09-22 01:50:18,278 INFO Starting Servlet engine: [Apache Tomcat/10.1.39] - -2025-09-22 01:50:18,281 INFO Initializing Spring embedded WebApplicationContext - -2025-09-22 01:50:18,281 INFO Root WebApplicationContext: initialization completed in 719 ms - -2025-09-22 01:50:18,310 INFO Get ParamCheck config from env, ParamCheckConfig{paramCheckEnabled=true, activeParamChecker=default} - -2025-09-22 01:50:18,452 INFO Get Push config from env, PushConfig{pushTaskDelay=500, pushTaskTimeout=5000, pushTaskRetryDelay=1000} - -2025-09-22 01:50:18,459 INFO Get topN config from env, TopNConfig{enabled=true, topNCount=10, internalMs=0} - -2025-09-22 01:50:18,559 INFO Nacos Console is starting... - -2025-09-22 01:50:18,597 INFO Adding welcome page: class path resource [static/index.html] - -2025-09-22 01:50:19,003 INFO Exposing 1 endpoint beneath base path '/actuator' - -2025-09-22 01:50:19,039 INFO Tomcat started on port 8080 (http) with context path '/' - -2025-09-22 01:50:19,058 INFO Started NacosBootstrap in 1.531 seconds (process running for 20.861) - -2025-09-22 01:50:19,058 INFO Nacos Console started successfully in 1532 ms - -2025-09-22 01:50:19,786 INFO Get NamingClient config from env, ClientConfig{clientExpiredTime=180000} - -2025-09-22 02:00:07,769 INFO [capacityManagement] start correct usage - -2025-09-22 02:00:07,785 INFO [capacityManagement] end correct usage, cost: 0.00938521s - -2025-09-22 02:00:08,677 WARN clearHistoryConfig get scheduled - -2025-09-22 02:00:08,678 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-22 02:00:08,679 WARN clearConfigHistory, getBeforeStamp:2025-08-23 02:00:08.0, pageSize:1000 - -2025-09-22 02:00:08,724 WARN history config cleaner successfully - -2025-09-22 02:10:07,786 INFO [capacityManagement] start correct usage - -2025-09-22 02:10:07,787 INFO [capacityManagement] end correct usage, cost: 9.04815E-4s - -2025-09-22 02:10:08,726 WARN clearHistoryConfig get scheduled - -2025-09-22 02:10:08,726 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-22 02:10:08,727 WARN clearConfigHistory, getBeforeStamp:2025-08-23 02:10:08.0, pageSize:1000 - -2025-09-22 02:10:08,728 WARN history config cleaner successfully - -2025-09-22 02:10:38,971 INFO Initializing Spring DispatcherServlet 'dispatcherServlet' - -2025-09-22 02:10:38,972 INFO Initializing Servlet 'dispatcherServlet' - -2025-09-22 02:10:38,974 INFO Completed initialization in 2 ms - -2025-09-22 02:10:39,500 INFO [AuthPluginManager] Load AuthPluginService(class com.alibaba.nacos.plugin.auth.impl.NacosAuthPluginService) AuthServiceName(nacos) successfully. - -2025-09-22 02:10:39,500 INFO [AuthPluginManager] Load AuthPluginService(class com.alibaba.nacos.plugin.auth.impl.LdapAuthPluginService) AuthServiceName(ldap) successfully. - -2025-09-22 02:20:07,788 INFO [capacityManagement] start correct usage - -2025-09-22 02:20:07,793 INFO [capacityManagement] end correct usage, cost: 0.004318456s - -2025-09-22 02:20:08,729 WARN clearHistoryConfig get scheduled - -2025-09-22 02:20:08,729 WARN clearHistoryConfig is enable in current context, try to run cleaner - -2025-09-22 02:20:08,730 WARN clearConfigHistory, getBeforeStamp:2025-08-23 02:20:08.0, pageSize:1000 - -2025-09-22 02:20:08,731 WARN history config cleaner successfully - diff --git a/docker/nacos/standalone-logs/nacos_gc.log b/docker/nacos/standalone-logs/nacos_gc.log deleted file mode 100644 index 74495cc..0000000 --- a/docker/nacos/standalone-logs/nacos_gc.log +++ /dev/null @@ -1,23 +0,0 @@ -[2025-09-24T15:18:58.285+0000][gc,heap ] GC(148) Eden regions: 510->0(510) -[2025-09-24T15:18:58.285+0000][gc,heap ] GC(148) Survivor regions: 2->2(64) -[2025-09-24T15:18:58.285+0000][gc,heap ] GC(148) Old regions: 103->103 -[2025-09-24T15:18:58.285+0000][gc,heap ] GC(148) Archive regions: 2->2 -[2025-09-24T15:18:58.286+0000][gc,heap ] GC(148) Humongous regions: 11->11 -[2025-09-24T15:18:58.286+0000][gc,metaspace] GC(148) Metaspace: 98112K(99264K)->98112K(99264K) NonClass: 86542K(87168K)->86542K(87168K) Class: 11569K(12096K)->11569K(12096K) -[2025-09-24T15:18:58.286+0000][gc ] GC(148) Pause Young (Normal) (G1 Evacuation Pause) 626M->116M(1024M) 127.626ms -[2025-09-24T15:18:58.286+0000][gc,cpu ] GC(148) User=0.10s Sys=0.05s Real=0.13s -[2025-09-24T15:53:17.384+0000][gc,start ] GC(149) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-24T15:53:17.387+0000][gc,task ] GC(149) Using 10 workers of 10 for evacuation -[2025-09-24T15:53:17.413+0000][gc,phases ] GC(149) Pre Evacuate Collection Set: 6.0ms -[2025-09-24T15:53:17.413+0000][gc,phases ] GC(149) Merge Heap Roots: 0.9ms -[2025-09-24T15:53:17.413+0000][gc,phases ] GC(149) Evacuate Collection Set: 14.8ms -[2025-09-24T15:53:17.413+0000][gc,phases ] GC(149) Post Evacuate Collection Set: 3.9ms -[2025-09-24T15:53:17.413+0000][gc,phases ] GC(149) Other: 4.3ms -[2025-09-24T15:53:17.414+0000][gc,heap ] GC(149) Eden regions: 510->0(510) -[2025-09-24T15:53:17.414+0000][gc,heap ] GC(149) Survivor regions: 2->2(64) -[2025-09-24T15:53:17.414+0000][gc,heap ] GC(149) Old regions: 103->103 -[2025-09-24T15:53:17.414+0000][gc,heap ] GC(149) Archive regions: 2->2 -[2025-09-24T15:53:17.414+0000][gc,heap ] GC(149) Humongous regions: 11->11 -[2025-09-24T15:53:17.414+0000][gc,metaspace] GC(149) Metaspace: 98114K(99264K)->98114K(99264K) NonClass: 86544K(87168K)->86544K(87168K) Class: 11569K(12096K)->11569K(12096K) -[2025-09-24T15:53:17.414+0000][gc ] GC(149) Pause Young (Normal) (G1 Evacuation Pause) 626M->116M(1024M) 30.333ms -[2025-09-24T15:53:17.414+0000][gc,cpu ] GC(149) User=0.11s Sys=0.00s Real=0.03s diff --git a/docker/nacos/standalone-logs/nacos_gc.log.0 b/docker/nacos/standalone-logs/nacos_gc.log.0 deleted file mode 100644 index 46c43ea..0000000 --- a/docker/nacos/standalone-logs/nacos_gc.log.0 +++ /dev/null @@ -1,198 +0,0 @@ -[2025-09-21T17:16:57.560+0000][gc] Using G1 -[2025-09-21T17:16:57.569+0000][gc,init] Version: 17.0.16+8-alpine-r0 (release) -[2025-09-21T17:16:57.569+0000][gc,init] CPUs: 12 total, 12 available -[2025-09-21T17:16:57.569+0000][gc,init] Memory: 7997M -[2025-09-21T17:16:57.569+0000][gc,init] Large Page Support: Disabled -[2025-09-21T17:16:57.569+0000][gc,init] NUMA Support: Disabled -[2025-09-21T17:16:57.569+0000][gc,init] Compressed Oops: Enabled (32-bit) -[2025-09-21T17:16:57.569+0000][gc,init] Heap Region Size: 1M -[2025-09-21T17:16:57.569+0000][gc,init] Heap Min Capacity: 1G -[2025-09-21T17:16:57.570+0000][gc,init] Heap Initial Capacity: 1G -[2025-09-21T17:16:57.570+0000][gc,init] Heap Max Capacity: 1G -[2025-09-21T17:16:57.570+0000][gc,init] Pre-touch: Disabled -[2025-09-21T17:16:57.570+0000][gc,init] Parallel Workers: 10 -[2025-09-21T17:16:57.570+0000][gc,init] Concurrent Workers: 3 -[2025-09-21T17:16:57.570+0000][gc,init] Concurrent Refinement Workers: 10 -[2025-09-21T17:16:57.570+0000][gc,init] Periodic GC: Disabled -[2025-09-21T17:16:57.579+0000][gc,metaspace] CDS archive(s) mapped at: [0x00007f7c56000000-0x00007f7c56bc7000-0x00007f7c56bc7000), size 12349440, SharedBaseAddress: 0x00007f7c56000000, ArchiveRelocationMode: 1. -[2025-09-21T17:16:57.579+0000][gc,metaspace] Compressed class space mapped at: 0x00007f7c57000000-0x00007f7c97000000, reserved size: 1073741824 -[2025-09-21T17:16:57.579+0000][gc,metaspace] Narrow klass base: 0x00007f7c56000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 -[2025-09-21T17:17:03.003+0000][gc,start ] GC(0) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-21T17:17:03.005+0000][gc,task ] GC(0) Using 10 workers of 10 for evacuation -[2025-09-21T17:17:03.062+0000][gc,phases ] GC(0) Pre Evacuate Collection Set: 0.2ms -[2025-09-21T17:17:03.063+0000][gc,phases ] GC(0) Merge Heap Roots: 0.2ms -[2025-09-21T17:17:03.063+0000][gc,phases ] GC(0) Evacuate Collection Set: 53.4ms -[2025-09-21T17:17:03.063+0000][gc,phases ] GC(0) Post Evacuate Collection Set: 3.2ms -[2025-09-21T17:17:03.063+0000][gc,phases ] GC(0) Other: 2.6ms -[2025-09-21T17:17:03.063+0000][gc,heap ] GC(0) Eden regions: 512->0(474) -[2025-09-21T17:17:03.063+0000][gc,heap ] GC(0) Survivor regions: 0->38(64) -[2025-09-21T17:17:03.063+0000][gc,heap ] GC(0) Old regions: 0->0 -[2025-09-21T17:17:03.063+0000][gc,heap ] GC(0) Archive regions: 2->2 -[2025-09-21T17:17:03.063+0000][gc,heap ] GC(0) Humongous regions: 0->0 -[2025-09-21T17:17:03.063+0000][gc,metaspace] GC(0) Metaspace: 21087K(21504K)->21087K(21504K) NonClass: 18472K(18688K)->18472K(18688K) Class: 2615K(2816K)->2615K(2816K) -[2025-09-21T17:17:03.064+0000][gc ] GC(0) Pause Young (Normal) (G1 Evacuation Pause) 512M->38M(1024M) 60.780ms -[2025-09-21T17:17:03.064+0000][gc,cpu ] GC(0) User=0.25s Sys=0.27s Real=0.06s -[2025-09-21T17:17:03.106+0000][gc,start ] GC(1) Pause Young (Concurrent Start) (Metadata GC Threshold) -[2025-09-21T17:17:03.106+0000][gc,task ] GC(1) Using 10 workers of 10 for evacuation -[2025-09-21T17:17:03.142+0000][gc,phases ] GC(1) Pre Evacuate Collection Set: 0.3ms -[2025-09-21T17:17:03.143+0000][gc,phases ] GC(1) Merge Heap Roots: 0.1ms -[2025-09-21T17:17:03.143+0000][gc,phases ] GC(1) Evacuate Collection Set: 35.2ms -[2025-09-21T17:17:03.143+0000][gc,phases ] GC(1) Post Evacuate Collection Set: 0.8ms -[2025-09-21T17:17:03.143+0000][gc,phases ] GC(1) Other: 0.3ms -[2025-09-21T17:17:03.143+0000][gc,heap ] GC(1) Eden regions: 4->0(507) -[2025-09-21T17:17:03.143+0000][gc,heap ] GC(1) Survivor regions: 38->5(64) -[2025-09-21T17:17:03.143+0000][gc,heap ] GC(1) Old regions: 0->38 -[2025-09-21T17:17:03.143+0000][gc,heap ] GC(1) Archive regions: 2->2 -[2025-09-21T17:17:03.143+0000][gc,heap ] GC(1) Humongous regions: 0->0 -[2025-09-21T17:17:03.143+0000][gc,metaspace] GC(1) Metaspace: 21137K(21504K)->21137K(21504K) NonClass: 18514K(18688K)->18514K(18688K) Class: 2622K(2816K)->2622K(2816K) -[2025-09-21T17:17:03.143+0000][gc ] GC(1) Pause Young (Concurrent Start) (Metadata GC Threshold) 42M->43M(1024M) 37.400ms -[2025-09-21T17:17:03.143+0000][gc,cpu ] GC(1) User=0.13s Sys=0.18s Real=0.04s -[2025-09-21T17:17:03.143+0000][gc ] GC(2) Concurrent Mark Cycle -[2025-09-21T17:17:03.143+0000][gc,marking ] GC(2) Concurrent Clear Claimed Marks -[2025-09-21T17:17:03.143+0000][gc,marking ] GC(2) Concurrent Clear Claimed Marks 0.042ms -[2025-09-21T17:17:03.143+0000][gc,marking ] GC(2) Concurrent Scan Root Regions -[2025-09-21T17:17:03.151+0000][gc,marking ] GC(2) Concurrent Scan Root Regions 7.827ms -[2025-09-21T17:17:03.151+0000][gc,marking ] GC(2) Concurrent Mark -[2025-09-21T17:17:03.152+0000][gc,marking ] GC(2) Concurrent Mark From Roots -[2025-09-21T17:17:03.152+0000][gc,task ] GC(2) Using 3 workers of 3 for marking -[2025-09-21T17:17:03.153+0000][gc,marking ] GC(2) Concurrent Mark From Roots 1.565ms -[2025-09-21T17:17:03.153+0000][gc,marking ] GC(2) Concurrent Preclean -[2025-09-21T17:17:03.153+0000][gc,marking ] GC(2) Concurrent Preclean 0.068ms -[2025-09-21T17:17:03.154+0000][gc,start ] GC(2) Pause Remark -[2025-09-21T17:17:03.156+0000][gc ] GC(2) Pause Remark 43M->43M(1024M) 2.746ms -[2025-09-21T17:17:03.156+0000][gc,cpu ] GC(2) User=0.00s Sys=0.01s Real=0.00s -[2025-09-21T17:17:03.157+0000][gc,marking ] GC(2) Concurrent Mark 5.492ms -[2025-09-21T17:17:03.157+0000][gc,marking ] GC(2) Concurrent Rebuild Remembered Sets -[2025-09-21T17:17:03.167+0000][gc,marking ] GC(2) Concurrent Rebuild Remembered Sets 9.850ms -[2025-09-21T17:17:03.167+0000][gc,start ] GC(2) Pause Cleanup -[2025-09-21T17:17:03.167+0000][gc ] GC(2) Pause Cleanup 44M->44M(1024M) 0.279ms -[2025-09-21T17:17:03.167+0000][gc,cpu ] GC(2) User=0.00s Sys=0.00s Real=0.00s -[2025-09-21T17:17:03.168+0000][gc,marking ] GC(2) Concurrent Cleanup for Next Mark -[2025-09-21T17:17:03.182+0000][gc,marking ] GC(2) Concurrent Cleanup for Next Mark 14.526ms -[2025-09-21T17:17:03.182+0000][gc ] GC(2) Concurrent Mark Cycle 38.800ms -[2025-09-21T17:17:05.970+0000][gc,start ] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) -[2025-09-21T17:17:05.970+0000][gc,task ] GC(3) Using 10 workers of 10 for evacuation -[2025-09-21T17:17:05.978+0000][gc,phases ] GC(3) Pre Evacuate Collection Set: 0.2ms -[2025-09-21T17:17:05.978+0000][gc,phases ] GC(3) Merge Heap Roots: 0.1ms -[2025-09-21T17:17:05.978+0000][gc,phases ] GC(3) Evacuate Collection Set: 6.4ms -[2025-09-21T17:17:05.978+0000][gc,phases ] GC(3) Post Evacuate Collection Set: 1.0ms -[2025-09-21T17:17:05.978+0000][gc,phases ] GC(3) Other: 0.2ms -[2025-09-21T17:17:05.978+0000][gc,heap ] GC(3) Eden regions: 281->0(503) -[2025-09-21T17:17:05.978+0000][gc,heap ] GC(3) Survivor regions: 5->9(64) -[2025-09-21T17:17:05.978+0000][gc,heap ] GC(3) Old regions: 38->38 -[2025-09-21T17:17:05.978+0000][gc,heap ] GC(3) Archive regions: 2->2 -[2025-09-21T17:17:05.978+0000][gc,heap ] GC(3) Humongous regions: 0->0 -[2025-09-21T17:17:05.978+0000][gc,metaspace] GC(3) Metaspace: 35585K(35968K)->35585K(35968K) NonClass: 31086K(31296K)->31086K(31296K) Class: 4498K(4672K)->4498K(4672K) -[2025-09-21T17:17:05.978+0000][gc ] GC(3) Pause Young (Concurrent Start) (Metadata GC Threshold) 323M->47M(1024M) 8.285ms -[2025-09-21T17:17:05.978+0000][gc,cpu ] GC(3) User=0.03s Sys=0.01s Real=0.01s -[2025-09-21T17:17:05.978+0000][gc ] GC(4) Concurrent Mark Cycle -[2025-09-21T17:17:05.978+0000][gc,marking ] GC(4) Concurrent Clear Claimed Marks -[2025-09-21T17:17:05.978+0000][gc,marking ] GC(4) Concurrent Clear Claimed Marks 0.048ms -[2025-09-21T17:17:05.978+0000][gc,marking ] GC(4) Concurrent Scan Root Regions -[2025-09-21T17:17:05.981+0000][gc,marking ] GC(4) Concurrent Scan Root Regions 2.430ms -[2025-09-21T17:17:05.981+0000][gc,marking ] GC(4) Concurrent Mark -[2025-09-21T17:17:05.981+0000][gc,marking ] GC(4) Concurrent Mark From Roots -[2025-09-21T17:17:05.981+0000][gc,task ] GC(4) Using 3 workers of 3 for marking -[2025-09-21T17:17:06.002+0000][gc,marking ] GC(4) Concurrent Mark From Roots 20.850ms -[2025-09-21T17:17:06.002+0000][gc,marking ] GC(4) Concurrent Preclean -[2025-09-21T17:17:06.002+0000][gc,marking ] GC(4) Concurrent Preclean 0.395ms -[2025-09-21T17:17:06.003+0000][gc,start ] GC(4) Pause Remark -[2025-09-21T17:17:06.008+0000][gc ] GC(4) Pause Remark 48M->48M(1024M) 5.136ms -[2025-09-21T17:17:06.008+0000][gc,cpu ] GC(4) User=0.02s Sys=0.00s Real=0.00s -[2025-09-21T17:17:06.008+0000][gc,marking ] GC(4) Concurrent Mark 27.030ms -[2025-09-21T17:17:06.008+0000][gc,marking ] GC(4) Concurrent Rebuild Remembered Sets -[2025-09-21T17:17:06.020+0000][gc,marking ] GC(4) Concurrent Rebuild Remembered Sets 11.898ms -[2025-09-21T17:17:06.020+0000][gc,start ] GC(4) Pause Cleanup -[2025-09-21T17:17:06.020+0000][gc ] GC(4) Pause Cleanup 48M->48M(1024M) 0.241ms -[2025-09-21T17:17:06.020+0000][gc,cpu ] GC(4) User=0.00s Sys=0.00s Real=0.00s -[2025-09-21T17:17:06.021+0000][gc,marking ] GC(4) Concurrent Cleanup for Next Mark -[2025-09-21T17:17:06.031+0000][gc,marking ] GC(4) Concurrent Cleanup for Next Mark 10.213ms -[2025-09-21T17:17:06.031+0000][gc ] GC(4) Concurrent Mark Cycle 52.638ms -[2025-09-21T17:17:10.276+0000][gc,start ] GC(5) Pause Young (Concurrent Start) (Metadata GC Threshold) -[2025-09-21T17:17:10.276+0000][gc,task ] GC(5) Using 10 workers of 10 for evacuation -[2025-09-21T17:17:10.294+0000][gc,phases ] GC(5) Pre Evacuate Collection Set: 0.3ms -[2025-09-21T17:17:10.294+0000][gc,phases ] GC(5) Merge Heap Roots: 0.2ms -[2025-09-21T17:17:10.294+0000][gc,phases ] GC(5) Evacuate Collection Set: 14.7ms -[2025-09-21T17:17:10.294+0000][gc,phases ] GC(5) Post Evacuate Collection Set: 2.4ms -[2025-09-21T17:17:10.294+0000][gc,phases ] GC(5) Other: 0.6ms -[2025-09-21T17:17:10.294+0000][gc,heap ] GC(5) Eden regions: 304->0(491) -[2025-09-21T17:17:10.294+0000][gc,heap ] GC(5) Survivor regions: 9->21(64) -[2025-09-21T17:17:10.295+0000][gc,heap ] GC(5) Old regions: 38->38 -[2025-09-21T17:17:10.295+0000][gc,heap ] GC(5) Archive regions: 2->2 -[2025-09-21T17:17:10.295+0000][gc,heap ] GC(5) Humongous regions: 0->0 -[2025-09-21T17:17:10.295+0000][gc,metaspace] GC(5) Metaspace: 59978K(60480K)->59978K(60480K) NonClass: 52600K(52864K)->52600K(52864K) Class: 7378K(7616K)->7378K(7616K) -[2025-09-21T17:17:10.295+0000][gc ] GC(5) Pause Young (Concurrent Start) (Metadata GC Threshold) 351M->59M(1024M) 18.595ms -[2025-09-21T17:17:10.295+0000][gc,cpu ] GC(5) User=0.05s Sys=0.00s Real=0.02s -[2025-09-21T17:17:10.295+0000][gc ] GC(6) Concurrent Mark Cycle -[2025-09-21T17:17:10.295+0000][gc,marking ] GC(6) Concurrent Clear Claimed Marks -[2025-09-21T17:17:10.295+0000][gc,marking ] GC(6) Concurrent Clear Claimed Marks 0.062ms -[2025-09-21T17:17:10.295+0000][gc,marking ] GC(6) Concurrent Scan Root Regions -[2025-09-21T17:17:10.299+0000][gc,marking ] GC(6) Concurrent Scan Root Regions 4.192ms -[2025-09-21T17:17:10.299+0000][gc,marking ] GC(6) Concurrent Mark -[2025-09-21T17:17:10.299+0000][gc,marking ] GC(6) Concurrent Mark From Roots -[2025-09-21T17:17:10.299+0000][gc,task ] GC(6) Using 3 workers of 3 for marking -[2025-09-21T17:17:10.322+0000][gc,marking ] GC(6) Concurrent Mark From Roots 22.317ms -[2025-09-21T17:17:10.322+0000][gc,marking ] GC(6) Concurrent Preclean -[2025-09-21T17:17:10.322+0000][gc,marking ] GC(6) Concurrent Preclean 0.180ms -[2025-09-21T17:17:10.322+0000][gc,start ] GC(6) Pause Remark -[2025-09-21T17:17:10.328+0000][gc ] GC(6) Pause Remark 61M->61M(1024M) 6.234ms -[2025-09-21T17:17:10.328+0000][gc,cpu ] GC(6) User=0.03s Sys=0.00s Real=0.00s -[2025-09-21T17:17:10.329+0000][gc,marking ] GC(6) Concurrent Mark 29.288ms -[2025-09-21T17:17:10.329+0000][gc,marking ] GC(6) Concurrent Rebuild Remembered Sets -[2025-09-21T17:17:10.338+0000][gc,marking ] GC(6) Concurrent Rebuild Remembered Sets 9.779ms -[2025-09-21T17:17:10.339+0000][gc,start ] GC(6) Pause Cleanup -[2025-09-21T17:17:10.339+0000][gc ] GC(6) Pause Cleanup 63M->63M(1024M) 0.287ms -[2025-09-21T17:17:10.339+0000][gc,cpu ] GC(6) User=0.00s Sys=0.00s Real=0.00s -[2025-09-21T17:17:10.339+0000][gc,marking ] GC(6) Concurrent Cleanup for Next Mark -[2025-09-21T17:17:10.340+0000][gc,marking ] GC(6) Concurrent Cleanup for Next Mark 0.885ms -[2025-09-21T17:17:10.340+0000][gc ] GC(6) Concurrent Mark Cycle 45.212ms -[2025-09-21T17:17:14.263+0000][gc,start ] GC(7) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-21T17:17:14.263+0000][gc,task ] GC(7) Using 10 workers of 10 for evacuation -[2025-09-21T17:17:14.285+0000][gc,phases ] GC(7) Pre Evacuate Collection Set: 0.3ms -[2025-09-21T17:17:14.285+0000][gc,phases ] GC(7) Merge Heap Roots: 0.2ms -[2025-09-21T17:17:14.285+0000][gc,phases ] GC(7) Evacuate Collection Set: 19.1ms -[2025-09-21T17:17:14.285+0000][gc,phases ] GC(7) Post Evacuate Collection Set: 2.6ms -[2025-09-21T17:17:14.285+0000][gc,phases ] GC(7) Other: 0.3ms -[2025-09-21T17:17:14.285+0000][gc,heap ] GC(7) Eden regions: 491->0(463) -[2025-09-21T17:17:14.285+0000][gc,heap ] GC(7) Survivor regions: 21->49(64) -[2025-09-21T17:17:14.285+0000][gc,heap ] GC(7) Old regions: 38->38 -[2025-09-21T17:17:14.285+0000][gc,heap ] GC(7) Archive regions: 2->2 -[2025-09-21T17:17:14.285+0000][gc,heap ] GC(7) Humongous regions: 0->0 -[2025-09-21T17:17:14.285+0000][gc,metaspace] GC(7) Metaspace: 73888K(74496K)->73888K(74496K) NonClass: 64575K(64896K)->64575K(64896K) Class: 9313K(9600K)->9313K(9600K) -[2025-09-21T17:17:14.285+0000][gc ] GC(7) Pause Young (Normal) (G1 Evacuation Pause) 550M->87M(1024M) 22.804ms -[2025-09-21T17:17:14.285+0000][gc,cpu ] GC(7) User=0.13s Sys=0.01s Real=0.02s -[2025-09-21T17:17:17.752+0000][gc,start ] GC(8) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-21T17:17:17.752+0000][gc,task ] GC(8) Using 10 workers of 10 for evacuation -[2025-09-21T17:17:17.819+0000][gc,phases ] GC(8) Pre Evacuate Collection Set: 0.3ms -[2025-09-21T17:17:17.819+0000][gc,phases ] GC(8) Merge Heap Roots: 0.1ms -[2025-09-21T17:17:17.819+0000][gc,phases ] GC(8) Evacuate Collection Set: 61.4ms -[2025-09-21T17:17:17.819+0000][gc,phases ] GC(8) Post Evacuate Collection Set: 4.7ms -[2025-09-21T17:17:17.819+0000][gc,phases ] GC(8) Other: 0.4ms -[2025-09-21T17:17:17.819+0000][gc,heap ] GC(8) Eden regions: 463->0(451) -[2025-09-21T17:17:17.819+0000][gc,heap ] GC(8) Survivor regions: 49->61(64) -[2025-09-21T17:17:17.820+0000][gc,heap ] GC(8) Old regions: 38->57 -[2025-09-21T17:17:17.820+0000][gc,heap ] GC(8) Archive regions: 2->2 -[2025-09-21T17:17:17.820+0000][gc,heap ] GC(8) Humongous regions: 0->0 -[2025-09-21T17:17:17.820+0000][gc,metaspace] GC(8) Metaspace: 81083K(81792K)->81083K(81792K) NonClass: 70880K(71232K)->70880K(71232K) Class: 10202K(10560K)->10202K(10560K) -[2025-09-21T17:17:17.820+0000][gc ] GC(8) Pause Young (Normal) (G1 Evacuation Pause) 550M->117M(1024M) 68.527ms -[2025-09-21T17:17:17.820+0000][gc,cpu ] GC(8) User=0.42s Sys=0.17s Real=0.06s -[2025-09-21T17:23:40.538+0000][gc,start ] GC(9) Pause Young (Normal) (G1 Evacuation Pause) -[2025-09-21T17:23:40.540+0000][gc,task ] GC(9) Using 10 workers of 10 for evacuation -[2025-09-21T17:23:40.566+0000][gc,phases ] GC(9) Pre Evacuate Collection Set: 0.3ms -[2025-09-21T17:23:40.566+0000][gc,phases ] GC(9) Merge Heap Roots: 0.2ms -[2025-09-21T17:23:40.566+0000][gc,phases ] GC(9) Evacuate Collection Set: 21.3ms -[2025-09-21T17:23:40.566+0000][gc,phases ] GC(9) Post Evacuate Collection Set: 3.0ms -[2025-09-21T17:23:40.566+0000][gc,phases ] GC(9) Other: 7.1ms -[2025-09-21T17:23:40.566+0000][gc,heap ] GC(9) Eden regions: 451->0(489) -[2025-09-21T17:23:40.566+0000][gc,heap ] GC(9) Survivor regions: 61->23(64) -[2025-09-21T17:23:40.566+0000][gc,heap ] GC(9) Old regions: 57->79 -[2025-09-21T17:23:40.566+0000][gc,heap ] GC(9) Archive regions: 2->2 -[2025-09-21T17:23:40.566+0000][gc,heap ] GC(9) Humongous regions: 7->7 -[2025-09-21T17:23:40.566+0000][gc,metaspace] GC(9) Metaspace: 90296K(91072K)->90296K(91072K) NonClass: 79218K(79616K)->79218K(79616K) Class: 11077K(11456K)->11077K(11456K) -[2025-09-21T17:23:40.566+0000][gc ] GC(9) Pause Young (Normal) (G1 Evacuation Pause) 575M->109M(1024M) 28.911ms -[2025-09-21T17:23:40.566+0000][gc,cpu ] GC(9) User=0.12s Sys=0.06s Real=0.03s -[2025-09-21T17:49:56.652+0000][gc,heap,exit] Heap -[2025-09-21T17:49:56.653+0000][gc,heap,exit] garbage-first heap total 1048576K, used 474033K [0x00000000c0000000, 0x0000000100000000) -[2025-09-21T17:49:56.653+0000][gc,heap,exit] region size 1024K, 375 young (384000K), 23 survivors (23552K) -[2025-09-21T17:49:56.653+0000][gc,heap,exit] Metaspace used 93773K, committed 94720K, reserved 1179648K -[2025-09-21T17:49:56.653+0000][gc,heap,exit] class space used 11233K, committed 11712K, reserved 1048576K diff --git a/docker/nacos/standalone-logs/naming-distro.log b/docker/nacos/standalone-logs/naming-distro.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/naming-event.log b/docker/nacos/standalone-logs/naming-event.log deleted file mode 100644 index 8e2cb74..0000000 --- a/docker/nacos/standalone-logs/naming-event.log +++ /dev/null @@ -1,14 +0,0 @@ -2025-09-26 00:39:31,711 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758818355186 - -2025-09-26 00:42:18,477 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758818518539 - -2025-09-26 00:42:18,484 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1301@DEFAULT@app-product, region: unknown, msg: client last beat: 1758818523088 - -2025-09-26 00:42:54,311 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758818557009 - -2025-09-26 01:23:16,835 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758820978911 - -2025-09-26 01:23:51,409 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758821016406 - -2025-09-26 01:30:40,033 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1300@DEFAULT@main-app, region: unknown, msg: client last beat: 1758821424739 - diff --git a/docker/nacos/standalone-logs/naming-event.log.2025-09-22.0 b/docker/nacos/standalone-logs/naming-event.log.2025-09-22.0 deleted file mode 100644 index 9759596..0000000 --- a/docker/nacos/standalone-logs/naming-event.log.2025-09-22.0 +++ /dev/null @@ -1,2 +0,0 @@ -2025-09-22 02:21:08,674 INFO {POS} {IP-DISABLED} valid: 192.168.31.101:1333@DEFAULT@app-shared, region: unknown, msg: client last beat: 1758478850332 - diff --git a/docker/nacos/standalone-logs/naming-performance.log b/docker/nacos/standalone-logs/naming-performance.log deleted file mode 100644 index f6692bc..0000000 --- a/docker/nacos/standalone-logs/naming-performance.log +++ /dev/null @@ -1,2574 +0,0 @@ -2025-09-26 00:00:51,560 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 00:00:51,566 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 00:00:51,566 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:00:51,566 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:00:51,566 INFO DISTRO:|0|0|0| - -2025-09-26 00:01:51,567 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:01:51,568 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:01:51,568 INFO DISTRO:|0|0|0| - -2025-09-26 00:02:51,568 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:02:51,569 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:02:51,569 INFO DISTRO:|0|0|0| - -2025-09-26 00:03:51,569 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:03:51,570 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:03:51,571 INFO DISTRO:|0|0|0| - -2025-09-26 00:04:51,571 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:04:51,572 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:04:51,572 INFO DISTRO:|0|0|0| - -2025-09-26 00:05:51,572 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:05:51,573 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:05:51,573 INFO DISTRO:|0|0|0| - -2025-09-26 00:06:51,573 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:06:51,573 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:06:51,573 INFO DISTRO:|0|0|0| - -2025-09-26 00:07:51,573 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:07:51,573 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:07:51,574 INFO DISTRO:|0|0|0| - -2025-09-26 00:08:51,574 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:08:51,574 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:08:51,574 INFO DISTRO:|0|0|0| - -2025-09-26 00:09:51,574 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:09:51,575 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:09:51,575 INFO DISTRO:|0|0|0| - -2025-09-26 00:10:51,575 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 00:10:51,576 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 00:10:51,576 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:10:51,576 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:10:51,576 INFO DISTRO:|0|0|0| - -2025-09-26 00:11:51,576 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:11:51,607 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:11:51,607 INFO DISTRO:|0|0|0| - -2025-09-26 00:12:51,608 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:12:51,609 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:12:51,609 INFO DISTRO:|0|0|0| - -2025-09-26 00:13:51,609 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:13:51,610 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:13:51,610 INFO DISTRO:|0|0|0| - -2025-09-26 00:14:51,610 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:14:51,611 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:14:51,611 INFO DISTRO:|0|0|0| - -2025-09-26 00:15:51,612 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:15:51,612 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:15:51,612 INFO DISTRO:|0|0|0| - -2025-09-26 00:16:51,613 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:16:51,614 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:16:51,614 INFO DISTRO:|0|0|0| - -2025-09-26 00:17:51,615 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:17:51,615 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:17:51,615 INFO DISTRO:|0|0|0| - -2025-09-26 00:18:51,616 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:18:51,617 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:18:51,617 INFO DISTRO:|0|0|0| - -2025-09-26 00:19:51,617 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:19:51,618 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:19:51,618 INFO DISTRO:|0|0|0| - -2025-09-26 00:20:51,619 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 00:20:51,619 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 00:20:51,619 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:20:51,620 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:20:51,620 INFO DISTRO:|0|0|0| - -2025-09-26 00:21:51,621 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:21:51,622 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:21:51,622 INFO DISTRO:|0|0|0| - -2025-09-26 00:22:51,623 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:22:51,624 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:22:51,624 INFO DISTRO:|0|0|0| - -2025-09-26 00:23:51,624 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:23:51,640 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:23:51,640 INFO DISTRO:|0|0|0| - -2025-09-26 00:24:51,641 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:24:51,641 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:24:51,641 INFO DISTRO:|0|0|0| - -2025-09-26 00:25:51,641 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:25:51,642 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:25:51,642 INFO DISTRO:|0|0|0| - -2025-09-26 00:26:51,642 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:26:51,643 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:26:51,643 INFO DISTRO:|0|0|0| - -2025-09-26 00:27:51,644 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:27:51,645 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:27:51,645 INFO DISTRO:|0|0|0| - -2025-09-26 00:28:51,647 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:28:51,647 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:28:51,647 INFO DISTRO:|0|0|0| - -2025-09-26 00:29:51,647 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:29:51,648 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:29:51,648 INFO DISTRO:|0|0|0| - -2025-09-26 00:30:51,649 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 00:30:51,649 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 00:30:51,649 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:30:51,649 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:30:51,649 INFO DISTRO:|0|0|0| - -2025-09-26 00:31:51,650 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:31:51,650 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:31:51,650 INFO DISTRO:|0|0|0| - -2025-09-26 00:32:51,650 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:32:51,650 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:32:51,650 INFO DISTRO:|0|0|0| - -2025-09-26 00:33:51,651 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:33:51,651 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:33:51,651 INFO DISTRO:|0|0|0| - -2025-09-26 00:34:51,652 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:34:51,654 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:34:51,654 INFO DISTRO:|0|0|0| - -2025-09-26 00:35:51,655 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:35:51,655 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:35:51,655 INFO DISTRO:|0|0|0| - -2025-09-26 00:36:51,656 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:36:51,656 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:36:51,656 INFO DISTRO:|0|0|0| - -2025-09-26 00:37:51,656 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:37:51,657 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:37:51,657 INFO DISTRO:|0|0|0| - -2025-09-26 00:38:51,658 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:38:51,659 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:38:51,659 INFO DISTRO:|0|0|0| - -2025-09-26 00:39:51,660 INFO PERFORMANCE:|3|2|0|-1|-1|0|0 - -2025-09-26 00:39:51,660 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:39:51,660 INFO DISTRO:|0|0|0| - -2025-09-26 00:40:51,661 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 00:40:51,663 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 00:40:51,663 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:40:51,663 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:40:51,663 INFO DISTRO:|0|0|0| - -2025-09-26 00:41:51,664 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:41:51,664 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:41:51,664 INFO DISTRO:|0|0|0| - -2025-09-26 00:42:51,664 INFO PERFORMANCE:|3|1|0|-1|-1|0|0 - -2025-09-26 00:42:51,665 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:42:51,665 INFO DISTRO:|0|0|0| - -2025-09-26 00:43:51,665 INFO PERFORMANCE:|2|1|0|-1|-1|0|0 - -2025-09-26 00:43:51,665 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:43:51,665 INFO DISTRO:|0|0|0| - -2025-09-26 00:44:51,666 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-26 00:44:51,666 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:44:51,666 INFO DISTRO:|0|0|0| - -2025-09-26 00:45:51,666 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-26 00:45:51,667 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:45:51,667 INFO DISTRO:|0|0|0| - -2025-09-26 00:46:51,668 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-26 00:46:51,669 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:46:51,669 INFO DISTRO:|0|0|0| - -2025-09-26 00:47:51,670 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-26 00:47:51,671 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:47:51,672 INFO DISTRO:|0|0|0| - -2025-09-26 00:48:51,673 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:48:51,674 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:48:51,674 INFO DISTRO:|0|0|0| - -2025-09-26 00:49:51,674 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:49:51,675 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:49:51,675 INFO DISTRO:|0|0|0| - -2025-09-26 00:50:51,675 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 00:50:51,676 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 00:50:51,676 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:50:51,676 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:50:51,676 INFO DISTRO:|0|0|0| - -2025-09-26 00:51:51,677 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:51:51,677 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:51:51,677 INFO DISTRO:|0|0|0| - -2025-09-26 00:52:51,678 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:52:51,678 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:52:51,679 INFO DISTRO:|0|0|0| - -2025-09-26 00:53:51,679 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:53:51,680 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:53:51,680 INFO DISTRO:|0|0|0| - -2025-09-26 00:54:51,680 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:54:51,680 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:54:51,680 INFO DISTRO:|0|0|0| - -2025-09-26 00:55:51,681 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:55:51,681 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:55:51,681 INFO DISTRO:|0|0|0| - -2025-09-26 00:56:51,682 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:56:51,684 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:56:51,684 INFO DISTRO:|0|0|0| - -2025-09-26 00:57:51,685 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:57:51,685 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:57:51,685 INFO DISTRO:|0|0|0| - -2025-09-26 00:58:51,685 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:58:51,686 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:58:51,686 INFO DISTRO:|0|0|0| - -2025-09-26 00:59:51,687 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 00:59:51,687 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 00:59:51,688 INFO DISTRO:|0|0|0| - -2025-09-26 01:00:51,688 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 01:00:51,689 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 01:00:51,689 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:00:51,689 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:00:51,689 INFO DISTRO:|0|0|0| - -2025-09-26 01:01:51,689 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:01:51,691 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:01:51,691 INFO DISTRO:|0|0|0| - -2025-09-26 01:02:51,692 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:02:51,692 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:02:51,692 INFO DISTRO:|0|0|0| - -2025-09-26 01:03:51,692 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:03:51,693 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:03:51,693 INFO DISTRO:|0|0|0| - -2025-09-26 01:04:51,694 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:04:51,695 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:04:51,695 INFO DISTRO:|0|0|0| - -2025-09-26 01:05:51,696 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:05:51,697 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:05:51,697 INFO DISTRO:|0|0|0| - -2025-09-26 01:06:51,697 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:06:51,697 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:06:51,697 INFO DISTRO:|0|0|0| - -2025-09-26 01:07:51,697 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:07:51,699 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:07:51,699 INFO DISTRO:|0|0|0| - -2025-09-26 01:08:51,700 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:08:51,700 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:08:51,700 INFO DISTRO:|0|0|0| - -2025-09-26 01:09:51,701 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:09:51,701 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:09:51,701 INFO DISTRO:|0|0|0| - -2025-09-26 01:10:51,702 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 01:10:51,703 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 01:10:51,703 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:10:51,704 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:10:51,705 INFO DISTRO:|0|0|0| - -2025-09-26 01:11:51,705 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:11:51,707 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:11:51,707 INFO DISTRO:|0|0|0| - -2025-09-26 01:12:51,707 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:12:51,709 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:12:51,709 INFO DISTRO:|0|0|0| - -2025-09-26 01:13:51,709 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:13:51,710 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:13:51,710 INFO DISTRO:|0|0|0| - -2025-09-26 01:14:51,710 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:14:51,711 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:14:51,711 INFO DISTRO:|0|0|0| - -2025-09-26 01:15:51,711 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:15:51,712 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:15:51,712 INFO DISTRO:|0|0|0| - -2025-09-26 01:16:51,712 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:16:51,714 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:16:51,714 INFO DISTRO:|0|0|0| - -2025-09-26 01:17:51,714 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:17:51,715 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:17:51,715 INFO DISTRO:|0|0|0| - -2025-09-26 01:18:51,715 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:18:51,716 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:18:51,716 INFO DISTRO:|0|0|0| - -2025-09-26 01:19:51,716 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:19:51,716 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:19:51,716 INFO DISTRO:|0|0|0| - -2025-09-26 01:20:51,717 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 01:20:51,718 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 01:20:51,718 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:20:51,718 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:20:51,718 INFO DISTRO:|0|0|0| - -2025-09-26 01:21:51,718 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:21:51,719 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:21:51,719 INFO DISTRO:|0|0|0| - -2025-09-26 01:22:51,719 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:22:51,720 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:22:51,720 INFO DISTRO:|0|0|0| - -2025-09-26 01:23:51,720 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:23:51,721 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:23:51,721 INFO DISTRO:|0|0|0| - -2025-09-26 01:24:51,722 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:24:51,722 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:24:51,722 INFO DISTRO:|0|0|0| - -2025-09-26 01:25:51,723 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:25:51,724 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:25:51,724 INFO DISTRO:|0|0|0| - -2025-09-26 01:26:51,725 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:26:51,726 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:26:51,726 INFO DISTRO:|0|0|0| - -2025-09-26 01:27:51,726 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:27:51,726 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:27:51,726 INFO DISTRO:|0|0|0| - -2025-09-26 01:28:51,727 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:28:51,728 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:28:51,728 INFO DISTRO:|0|0|0| - -2025-09-26 01:29:51,729 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:29:51,729 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:29:51,730 INFO DISTRO:|0|0|0| - -2025-09-26 01:30:51,730 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 01:30:51,730 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 01:30:51,730 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:30:51,730 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:30:51,730 INFO DISTRO:|0|0|0| - -2025-09-26 01:31:51,731 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:31:51,731 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:31:51,731 INFO DISTRO:|0|0|0| - -2025-09-26 01:32:51,732 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:32:51,733 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:32:51,733 INFO DISTRO:|0|0|0| - -2025-09-26 01:33:51,734 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:33:51,735 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:33:51,735 INFO DISTRO:|0|0|0| - -2025-09-26 01:34:51,735 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:34:51,736 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:34:51,736 INFO DISTRO:|0|0|0| - -2025-09-26 01:35:51,738 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:35:51,739 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:35:51,739 INFO DISTRO:|0|0|0| - -2025-09-26 01:36:51,740 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:36:51,740 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:36:51,740 INFO DISTRO:|0|0|0| - -2025-09-26 01:37:51,740 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:37:51,740 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:37:51,740 INFO DISTRO:|0|0|0| - -2025-09-26 01:38:51,742 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:38:51,742 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:38:51,742 INFO DISTRO:|0|0|0| - -2025-09-26 01:39:51,742 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:39:51,743 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:39:51,744 INFO DISTRO:|0|0|0| - -2025-09-26 01:40:51,744 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-26 01:40:51,744 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-26 01:40:51,744 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:40:51,744 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:40:51,744 INFO DISTRO:|0|0|0| - -2025-09-26 01:41:51,744 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:41:51,745 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:41:51,745 INFO DISTRO:|0|0|0| - -2025-09-26 01:42:51,745 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:42:51,746 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:42:51,746 INFO DISTRO:|0|0|0| - -2025-09-26 01:43:51,747 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:43:51,748 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:43:51,748 INFO DISTRO:|0|0|0| - -2025-09-26 01:44:51,749 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:44:51,750 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:44:51,750 INFO DISTRO:|0|0|0| - -2025-09-26 01:45:51,751 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:45:51,751 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:45:51,751 INFO DISTRO:|0|0|0| - -2025-09-26 01:46:51,752 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:46:51,753 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:46:51,753 INFO DISTRO:|0|0|0| - -2025-09-26 01:47:51,754 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:47:51,755 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:47:51,755 INFO DISTRO:|0|0|0| - -2025-09-26 01:48:51,756 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:48:51,756 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:48:51,757 INFO DISTRO:|0|0|0| - -2025-09-26 01:49:51,758 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-26 01:49:51,759 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-26 01:49:51,759 INFO DISTRO:|0|0|0| - diff --git a/docker/nacos/standalone-logs/naming-performance.log.2025-09-22.0 b/docker/nacos/standalone-logs/naming-performance.log.2025-09-22.0 deleted file mode 100644 index 424cdde..0000000 --- a/docker/nacos/standalone-logs/naming-performance.log.2025-09-22.0 +++ /dev/null @@ -1,1665 +0,0 @@ -2025-09-22 01:17:41,679 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 01:17:41,679 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 01:17:41,679 INFO PERFORMANCE:|0|0|0|-1|-1|0|0 - -2025-09-22 01:17:41,685 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:17:41,685 INFO DISTRO:|0|0|0| - -2025-09-22 01:18:41,686 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:18:41,687 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:18:41,687 INFO DISTRO:|0|0|0| - -2025-09-22 01:19:41,689 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:19:41,690 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:19:41,690 INFO DISTRO:|0|0|0| - -2025-09-22 01:20:41,692 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:20:41,693 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:20:41,693 INFO DISTRO:|0|0|0| - -2025-09-22 01:21:41,694 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:21:41,695 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:21:41,695 INFO DISTRO:|0|0|0| - -2025-09-22 01:22:41,695 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:22:41,696 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:22:41,697 INFO DISTRO:|0|0|0| - -2025-09-22 01:23:41,698 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:23:41,698 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:23:41,699 INFO DISTRO:|0|0|0| - -2025-09-22 01:24:41,700 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:24:41,701 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:24:41,701 INFO DISTRO:|0|0|0| - -2025-09-22 01:25:41,702 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:25:41,703 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:25:41,704 INFO DISTRO:|0|0|0| - -2025-09-22 01:26:41,705 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:26:41,706 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:26:41,706 INFO DISTRO:|0|0|0| - -2025-09-22 01:27:41,707 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 01:27:41,708 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 01:27:41,708 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:27:41,708 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:27:41,708 INFO DISTRO:|0|0|0| - -2025-09-22 01:28:41,709 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:28:41,710 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:28:41,710 INFO DISTRO:|0|0|0| - -2025-09-22 01:29:41,711 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:29:41,712 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:29:41,712 INFO DISTRO:|0|0|0| - -2025-09-22 01:30:41,712 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:30:41,713 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:30:41,713 INFO DISTRO:|0|0|0| - -2025-09-22 01:31:41,714 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:31:41,714 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:31:41,714 INFO DISTRO:|0|0|0| - -2025-09-22 01:32:41,715 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:32:41,716 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:32:41,716 INFO DISTRO:|0|0|0| - -2025-09-22 01:33:41,717 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:33:41,718 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:33:41,718 INFO DISTRO:|0|0|0| - -2025-09-22 01:34:41,719 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:34:41,720 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:34:41,720 INFO DISTRO:|0|0|0| - -2025-09-22 01:35:41,720 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:35:41,721 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:35:41,721 INFO DISTRO:|0|0|0| - -2025-09-22 01:36:41,721 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:36:41,722 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:36:41,722 INFO DISTRO:|0|0|0| - -2025-09-22 01:37:41,724 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 01:37:41,725 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 01:37:41,725 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:37:41,725 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:37:41,725 INFO DISTRO:|0|0|0| - -2025-09-22 01:38:41,726 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:38:41,727 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:38:41,727 INFO DISTRO:|0|0|0| - -2025-09-22 01:39:41,731 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:39:41,732 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:39:41,732 INFO DISTRO:|0|0|0| - -2025-09-22 01:40:41,733 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:40:41,733 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:40:41,733 INFO DISTRO:|0|0|0| - -2025-09-22 01:41:41,734 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:41:41,735 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:41:41,735 INFO DISTRO:|0|0|0| - -2025-09-22 01:42:41,736 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:42:41,736 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:42:41,736 INFO DISTRO:|0|0|0| - -2025-09-22 01:43:41,737 INFO PERFORMANCE:|1|1|0|-1|-1|0|0 - -2025-09-22 01:43:41,737 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:43:41,737 INFO DISTRO:|0|0|0| - -2025-09-22 01:44:41,738 INFO PERFORMANCE:|2|2|0|-1|-1|0|0 - -2025-09-22 01:44:41,738 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:44:41,738 INFO DISTRO:|0|0|0| - -2025-09-22 01:45:41,740 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:45:41,741 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:45:41,741 INFO DISTRO:|0|0|0| - -2025-09-22 01:46:41,741 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:46:41,742 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:46:41,742 INFO DISTRO:|0|0|0| - -2025-09-22 01:47:41,742 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 01:47:41,743 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 01:47:41,743 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:47:41,743 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:47:41,743 INFO DISTRO:|0|0|0| - -2025-09-22 01:48:41,744 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:48:41,745 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:48:41,745 INFO DISTRO:|0|0|0| - -2025-09-22 01:49:41,745 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:49:41,746 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:49:41,746 INFO DISTRO:|0|0|0| - -2025-09-22 01:50:41,407 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 01:50:41,407 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 01:50:41,407 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:50:41,407 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:50:41,409 INFO DISTRO:|0|0|0| - -2025-09-22 01:51:41,410 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:51:41,411 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:51:41,411 INFO DISTRO:|0|0|0| - -2025-09-22 01:52:41,412 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:52:41,413 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:52:41,413 INFO DISTRO:|0|0|0| - -2025-09-22 01:53:41,414 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:53:41,415 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:53:41,416 INFO DISTRO:|0|0|0| - -2025-09-22 01:54:41,416 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:54:41,416 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:54:41,416 INFO DISTRO:|0|0|0| - -2025-09-22 01:55:41,417 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:55:41,417 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:55:41,417 INFO DISTRO:|0|0|0| - -2025-09-22 01:56:41,418 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:56:41,418 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:56:41,418 INFO DISTRO:|0|0|0| - -2025-09-22 01:57:41,418 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:57:41,418 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:57:41,418 INFO DISTRO:|0|0|0| - -2025-09-22 01:58:41,419 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:58:41,421 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:58:41,421 INFO DISTRO:|0|0|0| - -2025-09-22 01:59:41,422 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 01:59:41,422 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 01:59:41,422 INFO DISTRO:|0|0|0| - -2025-09-22 02:00:41,423 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 02:00:41,424 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 02:00:41,424 INFO PERFORMANCE:|3|3|0|-1|-1|0|0 - -2025-09-22 02:00:41,424 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:00:41,424 INFO DISTRO:|0|0|0| - -2025-09-22 02:01:41,425 INFO PERFORMANCE:|3|3|1|581|581|1|0 - -2025-09-22 02:01:41,426 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:01:41,426 INFO DISTRO:|0|0|0| - -2025-09-22 02:02:41,426 INFO PERFORMANCE:|3|3|2|569|569|2|0 - -2025-09-22 02:02:41,427 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:02:41,427 INFO DISTRO:|0|0|0| - -2025-09-22 02:03:41,428 INFO PERFORMANCE:|3|3|1|-1|-1|2|0 - -2025-09-22 02:03:41,429 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:03:41,429 INFO DISTRO:|0|0|0| - -2025-09-22 02:04:41,429 INFO PERFORMANCE:|3|3|1|-1|-1|2|0 - -2025-09-22 02:04:41,430 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:04:41,431 INFO DISTRO:|0|0|0| - -2025-09-22 02:05:41,431 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:05:41,433 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:05:41,433 INFO DISTRO:|0|0|0| - -2025-09-22 02:06:41,433 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:06:41,435 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:06:41,435 INFO DISTRO:|0|0|0| - -2025-09-22 02:07:41,436 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:07:41,437 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:07:41,437 INFO DISTRO:|0|0|0| - -2025-09-22 02:08:41,438 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:08:41,439 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:08:41,439 INFO DISTRO:|0|0|0| - -2025-09-22 02:09:41,440 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:09:41,444 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:09:41,444 INFO DISTRO:|0|0|0| - -2025-09-22 02:10:41,444 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 02:10:41,445 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 02:10:41,445 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:10:41,445 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:10:41,445 INFO DISTRO:|0|0|0| - -2025-09-22 02:11:41,446 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:11:41,446 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:11:41,446 INFO DISTRO:|0|0|0| - -2025-09-22 02:12:41,447 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:12:41,448 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:12:41,448 INFO DISTRO:|0|0|0| - -2025-09-22 02:13:41,448 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:13:41,450 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:13:41,451 INFO DISTRO:|0|0|0| - -2025-09-22 02:14:41,451 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:14:41,452 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:14:41,452 INFO DISTRO:|0|0|0| - -2025-09-22 02:15:41,453 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:15:41,453 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:15:41,453 INFO DISTRO:|0|0|0| - -2025-09-22 02:16:41,454 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:16:41,455 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:16:41,455 INFO DISTRO:|0|0|0| - -2025-09-22 02:17:41,456 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:17:41,456 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:17:41,456 INFO DISTRO:|0|0|0| - -2025-09-22 02:18:41,456 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:18:41,457 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:18:41,457 INFO DISTRO:|0|0|0| - -2025-09-22 02:19:41,457 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:19:41,458 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:19:41,458 INFO DISTRO:|0|0|0| - -2025-09-22 02:20:41,459 INFO PERFORMANCE:|serviceCount|ipCount|subscribeCount|maxPushCost|avgPushCost|totalPushCount|failPushCount - -2025-09-22 02:20:41,459 INFO DISTRO:|V1SyncDone|V1SyncFail|V2SyncDone|V2SyncFail|V2VerifyFail| - -2025-09-22 02:20:41,459 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:20:41,459 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:20:41,459 INFO DISTRO:|0|0|0| - -2025-09-22 02:21:41,459 INFO PERFORMANCE:|3|2|0|-1|-1|2|0 - -2025-09-22 02:21:41,459 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:21:41,459 INFO DISTRO:|0|0|0| - -2025-09-22 02:22:41,460 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:22:41,460 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:22:41,461 INFO DISTRO:|0|0|0| - -2025-09-22 02:23:41,461 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:23:41,462 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:23:41,463 INFO DISTRO:|0|0|0| - -2025-09-22 02:24:41,463 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:24:41,465 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:24:41,465 INFO DISTRO:|0|0|0| - -2025-09-22 02:25:41,465 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:25:41,467 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:25:41,467 INFO DISTRO:|0|0|0| - -2025-09-22 02:26:41,467 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:26:41,468 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:26:41,468 INFO DISTRO:|0|0|0| - -2025-09-22 02:27:41,468 INFO PERFORMANCE:|3|3|0|-1|-1|2|0 - -2025-09-22 02:27:41,469 INFO Task worker status: -naming_0%16, pending tasks: 0 -naming_1%16, pending tasks: 0 -naming_2%16, pending tasks: 0 -naming_3%16, pending tasks: 0 -naming_4%16, pending tasks: 0 -naming_5%16, pending tasks: 0 -naming_6%16, pending tasks: 0 -naming_7%16, pending tasks: 0 -naming_8%16, pending tasks: 0 -naming_9%16, pending tasks: 0 -naming_10%16, pending tasks: 0 -naming_11%16, pending tasks: 0 -naming_12%16, pending tasks: 0 -naming_13%16, pending tasks: 0 -naming_14%16, pending tasks: 0 -naming_15%16, pending tasks: 0 - - -2025-09-22 02:27:41,469 INFO DISTRO:|0|0|0| - diff --git a/docker/nacos/standalone-logs/naming-push.log b/docker/nacos/standalone-logs/naming-push.log deleted file mode 100644 index 3fe720c..0000000 --- a/docker/nacos/standalone-logs/naming-push.log +++ /dev/null @@ -1,38 +0,0 @@ -2025-09-26 00:08:00,749 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=18} - -2025-09-26 00:12:30,613 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=20} - -2025-09-26 00:12:40,022 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=22} - -2025-09-26 00:14:37,576 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=24} - -2025-09-26 00:24:09,184 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=26} - -2025-09-26 00:40:33,487 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=29} - -2025-09-26 00:43:35,456 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=32} - -2025-09-26 00:48:42,328 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2} - -2025-09-26 00:49:46,399 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=4} - -2025-09-26 00:49:51,496 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=6} - -2025-09-26 00:51:21,459 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=8} - -2025-09-26 00:51:42,244 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=10} - -2025-09-26 00:51:53,224 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=12} - -2025-09-26 00:52:28,283 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=14} - -2025-09-26 00:52:42,675 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=16} - -2025-09-26 00:52:56,819 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=18} - -2025-09-26 00:53:22,728 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=34} - -2025-09-26 00:53:24,875 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=20} - -2025-09-26 01:16:04,855 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=36} - diff --git a/docker/nacos/standalone-logs/naming-push.log.2025-09-22.0 b/docker/nacos/standalone-logs/naming-push.log.2025-09-22.0 deleted file mode 100644 index 951e377..0000000 --- a/docker/nacos/standalone-logs/naming-push.log.2025-09-22.0 +++ /dev/null @@ -1,34 +0,0 @@ -2025-09-22 01:44:39,574 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2} - -2025-09-22 01:44:44,784 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2} - -2025-09-22 01:48:48,290 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=4} - -2025-09-22 01:50:18,461 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2} - -2025-09-22 01:50:20,024 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2} - -2025-09-22 02:01:31,866 INFO DEFAULT_GROUP@@app-product is changed, add it to push queue. - -2025-09-22 02:01:31,886 INFO serviceName: DEFAULT_GROUP@@app-product changed, schedule push for: 192.168.31.101:59690, agent: Nacos-Java-Client:v1.0.0, key: 192.168.31.101,59690,52604733734431 - -2025-09-22 02:01:31,887 INFO send udp packet: 192.168.31.101,59690,52604733734431 - -2025-09-22 02:01:31,901 INFO [PUSH-SUCC] 40ms, all delay time 581ms for subscriber 192.168.31.101, Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2}, originalSize=1, DataSize=1 - -2025-09-22 02:02:39,192 INFO DEFAULT_GROUP@@app-product is changed, add it to push queue. - -2025-09-22 02:02:39,193 INFO serviceName: DEFAULT_GROUP@@app-product changed, schedule push for: 192.168.31.101:51777, agent: Nacos-Java-Client:v1.0.0, key: 192.168.31.101,51777,52672059923470 - -2025-09-22 02:02:39,194 INFO send udp packet: 192.168.31.101,51777,52672059923470 - -2025-09-22 02:02:39,196 INFO [PUSH-SUCC] 4ms, all delay time 569ms for subscriber 192.168.31.101, Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2}, originalSize=1, DataSize=1 - -2025-09-22 02:09:59,753 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=4} - -2025-09-22 02:10:06,643 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=4} - -2025-09-22 02:22:08,769 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=8} - -2025-09-22 02:22:18,808 INFO [PUSH] Task merge for Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=7} - diff --git a/docker/nacos/standalone-logs/naming-raft.log b/docker/nacos/standalone-logs/naming-raft.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/naming-rt.log b/docker/nacos/standalone-logs/naming-rt.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/naming-server.log b/docker/nacos/standalone-logs/naming-server.log deleted file mode 100644 index 780d694..0000000 --- a/docker/nacos/standalone-logs/naming-server.log +++ /dev/null @@ -1,232 +0,0 @@ -2025-09-26 00:07:45,429 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=1}, 192.168.31.101:1300#true - -2025-09-26 00:08:00,734 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=16}, 192.168.31.101:1333#true - -2025-09-26 00:08:00,749 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=17}, 192.168.31.101:1333#true - -2025-09-26 00:08:12,429 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=2}, 192.168.31.101:1300#true - -2025-09-26 00:12:30,596 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=18}, 192.168.31.101:1333#true - -2025-09-26 00:12:30,613 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=19}, 192.168.31.101:1333#true - -2025-09-26 00:12:39,994 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=20}, 192.168.31.101:1333#true - -2025-09-26 00:12:40,022 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=21}, 192.168.31.101:1333#true - -2025-09-26 00:13:17,730 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=3}, 192.168.31.101:1300#true - -2025-09-26 00:14:37,552 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=22}, 192.168.31.101:1333#true - -2025-09-26 00:14:37,570 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=23}, 192.168.31.101:1333#true - -2025-09-26 00:22:45,723 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=4}, 192.168.31.101:1300#true - -2025-09-26 00:24:09,166 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=24}, 192.168.31.101:1333#true - -2025-09-26 00:24:09,184 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=25}, 192.168.31.101:1333#true - -2025-09-26 00:39:46,729 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=26}, ip: {"ip":"192.168.31.101","port":1333,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1333#DEFAULT#DEFAULT_GROUP@@app-shared"},"lastHeartBeatTime":1758818355186,"metadataId":"192.168.31.101:1333:DEFAULT"} - -2025-09-26 00:39:46,729 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=26}, 192.168.31.101:1333#true - -2025-09-26 00:39:46,730 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE - -2025-09-26 00:39:50,361 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers - -2025-09-26 00:40:33,464 INFO Client connection 192.168.31.101:1333#true connect - -2025-09-26 00:40:33,466 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=27}, 192.168.31.101:1333#true - -2025-09-26 00:40:33,466 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE - -2025-09-26 00:40:33,487 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=28}, 192.168.31.101:1333#true - -2025-09-26 00:42:33,483 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=29}, ip: {"ip":"192.168.31.101","port":1333,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1333#DEFAULT#DEFAULT_GROUP@@app-shared"},"lastHeartBeatTime":1758818518539,"metadataId":"192.168.31.101:1333:DEFAULT"} - -2025-09-26 00:42:33,483 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=29}, 192.168.31.101:1333#true - -2025-09-26 00:42:33,483 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE - -2025-09-26 00:42:33,487 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2}, ip: {"ip":"192.168.31.101","port":1301,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1301#DEFAULT#DEFAULT_GROUP@@app-product"},"lastHeartBeatTime":1758818523088,"metadataId":"192.168.31.101:1301:DEFAULT"} - -2025-09-26 00:42:33,487 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2}, 192.168.31.101:1301#true - -2025-09-26 00:42:33,487 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-product,changed type DELETE_SERVICE - -2025-09-26 00:42:35,375 INFO Client connection 192.168.31.101:1301#true disconnect, remove instances and subscribers - -2025-09-26 00:42:35,376 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers - -2025-09-26 00:43:09,322 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=5}, ip: {"ip":"192.168.31.101","port":1300,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1300#DEFAULT#DEFAULT_GROUP@@main-app"},"lastHeartBeatTime":1758818557009,"metadataId":"192.168.31.101:1300:DEFAULT"} - -2025-09-26 00:43:09,322 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=5}, 192.168.31.101:1300#true - -2025-09-26 00:43:09,322 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type DELETE_SERVICE - -2025-09-26 00:43:10,378 INFO Client connection 192.168.31.101:1300#true disconnect, remove instances and subscribers - -2025-09-26 00:43:35,439 INFO Client connection 192.168.31.101:1333#true connect - -2025-09-26 00:43:35,439 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=30}, 192.168.31.101:1333#true - -2025-09-26 00:43:35,440 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE - -2025-09-26 00:43:35,456 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=31}, 192.168.31.101:1333#true - -2025-09-26 00:43:46,554 WARN namespace : public, [DEFAULT_GROUP@@app-product] services are automatically cleaned - -2025-09-26 00:44:46,560 WARN namespace : public, [DEFAULT_GROUP@@main-app] services are automatically cleaned - -2025-09-26 00:48:31,587 INFO Client connection 192.168.31.101:1300#true connect - -2025-09-26 00:48:31,590 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=0}, 192.168.31.101:1300#true - -2025-09-26 00:48:31,591 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE - -2025-09-26 00:48:42,307 INFO Client connection 192.168.31.101:1301#true connect - -2025-09-26 00:48:42,307 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=0}, 192.168.31.101:1301#true - -2025-09-26 00:48:42,307 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-product,changed type ADD_SERVICE - -2025-09-26 00:48:42,328 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=1}, 192.168.31.101:1301#true - -2025-09-26 00:49:46,380 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2}, 192.168.31.101:1301#true - -2025-09-26 00:49:46,399 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=3}, 192.168.31.101:1301#true - -2025-09-26 00:49:51,481 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=4}, 192.168.31.101:1301#true - -2025-09-26 00:49:51,496 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=5}, 192.168.31.101:1301#true - -2025-09-26 00:51:21,444 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=6}, 192.168.31.101:1301#true - -2025-09-26 00:51:21,459 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=7}, 192.168.31.101:1301#true - -2025-09-26 00:51:42,221 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=8}, 192.168.31.101:1301#true - -2025-09-26 00:51:42,243 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=9}, 192.168.31.101:1301#true - -2025-09-26 00:51:53,204 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=10}, 192.168.31.101:1301#true - -2025-09-26 00:51:53,223 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=11}, 192.168.31.101:1301#true - -2025-09-26 00:52:28,263 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=12}, 192.168.31.101:1301#true - -2025-09-26 00:52:28,283 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=13}, 192.168.31.101:1301#true - -2025-09-26 00:52:42,655 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=14}, 192.168.31.101:1301#true - -2025-09-26 00:52:42,675 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=15}, 192.168.31.101:1301#true - -2025-09-26 00:52:56,800 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=16}, 192.168.31.101:1301#true - -2025-09-26 00:52:56,819 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=17}, 192.168.31.101:1301#true - -2025-09-26 00:53:22,707 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=32}, 192.168.31.101:1333#true - -2025-09-26 00:53:22,728 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=33}, 192.168.31.101:1333#true - -2025-09-26 00:53:24,849 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=18}, 192.168.31.101:1301#true - -2025-09-26 00:53:24,874 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=19}, 192.168.31.101:1301#true - -2025-09-26 00:57:05,438 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=1}, 192.168.31.101:1300#true - -2025-09-26 01:12:16,504 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=2}, 192.168.31.101:1300#true - -2025-09-26 01:15:27,168 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=3}, 192.168.31.101:1300#true - -2025-09-26 01:16:04,840 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=34}, 192.168.31.101:1333#true - -2025-09-26 01:16:04,855 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=35}, 192.168.31.101:1333#true - -2025-09-26 01:20:00,927 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=4}, 192.168.31.101:1300#true - -2025-09-26 01:21:18,833 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=5}, 192.168.31.101:1300#true - -2025-09-26 01:23:31,838 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=6}, ip: {"ip":"192.168.31.101","port":1300,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1300#DEFAULT#DEFAULT_GROUP@@main-app"},"lastHeartBeatTime":1758820978911,"metadataId":"192.168.31.101:1300:DEFAULT"} - -2025-09-26 01:23:31,838 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=6}, 192.168.31.101:1300#true - -2025-09-26 01:23:31,840 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type DELETE_SERVICE - -2025-09-26 01:23:35,781 INFO Client connection 192.168.31.101:1300#true disconnect, remove instances and subscribers - -2025-09-26 01:23:36,406 INFO Client connection 192.168.31.101:1300#true connect - -2025-09-26 01:23:36,406 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=7}, 192.168.31.101:1300#true - -2025-09-26 01:23:36,406 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE - -2025-09-26 01:24:06,412 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=8}, ip: {"ip":"192.168.31.101","port":1300,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1300#DEFAULT#DEFAULT_GROUP@@main-app"},"lastHeartBeatTime":1758821016406,"metadataId":"192.168.31.101:1300:DEFAULT"} - -2025-09-26 01:24:06,412 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=8}, 192.168.31.101:1300#true - -2025-09-26 01:24:06,412 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type DELETE_SERVICE - -2025-09-26 01:24:10,784 INFO Client connection 192.168.31.101:1300#true disconnect, remove instances and subscribers - -2025-09-26 01:24:14,985 INFO Client connection 192.168.31.101:1300#true connect - -2025-09-26 01:24:14,985 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=9}, 192.168.31.101:1300#true - -2025-09-26 01:24:14,985 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE - -2025-09-26 01:26:14,994 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=10}, 192.168.31.101:1300#true - -2025-09-26 01:29:44,148 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=11}, 192.168.31.101:1300#true - -2025-09-26 01:30:09,742 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=12}, 192.168.31.101:1300#true - -2025-09-26 01:30:43,522 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=13}, 192.168.31.101:1300#true - -2025-09-26 01:31:09,016 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=14}, 192.168.31.101:1300#true - -2025-09-26 01:31:20,868 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=15}, 192.168.31.101:1300#true - -2025-09-26 01:31:30,297 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=16}, 192.168.31.101:1300#true - -2025-09-26 01:32:16,404 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=17}, 192.168.31.101:1300#true - -2025-09-26 01:32:26,941 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=18}, 192.168.31.101:1300#true - -2025-09-26 01:32:34,692 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=19}, 192.168.31.101:1300#true - -2025-09-26 01:33:01,368 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=20}, 192.168.31.101:1300#true - -2025-09-26 01:33:24,435 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=21}, 192.168.31.101:1300#true - -2025-09-26 01:33:57,379 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=22}, 192.168.31.101:1300#true - -2025-09-26 01:36:19,098 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=23}, 192.168.31.101:1300#true - -2025-09-26 01:38:53,223 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=24}, 192.168.31.101:1300#true - -2025-09-26 01:39:23,218 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=25}, 192.168.31.101:1300#true - -2025-09-26 01:43:42,663 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=26}, 192.168.31.101:1300#true - -2025-09-26 01:44:16,594 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=27}, 192.168.31.101:1300#true - -2025-09-26 01:44:58,906 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=28}, 192.168.31.101:1300#true - -2025-09-26 01:45:30,645 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=29}, 192.168.31.101:1300#true - -2025-09-26 01:45:56,735 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=30}, 192.168.31.101:1300#true - -2025-09-26 01:46:45,738 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=31}, 192.168.31.101:1300#true - -2025-09-26 01:47:50,733 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=32}, 192.168.31.101:1300#true - -2025-09-26 01:48:05,896 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=33}, 192.168.31.101:1300#true - -2025-09-26 01:48:18,563 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=34}, 192.168.31.101:1300#true - -2025-09-26 01:48:32,946 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=35}, 192.168.31.101:1300#true - -2025-09-26 01:48:53,653 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=36}, 192.168.31.101:1300#true - -2025-09-26 01:49:13,204 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=37}, 192.168.31.101:1300#true - diff --git a/docker/nacos/standalone-logs/naming-server.log.2025-09-22.0 b/docker/nacos/standalone-logs/naming-server.log.2025-09-22.0 deleted file mode 100644 index 3ee973a..0000000 --- a/docker/nacos/standalone-logs/naming-server.log.2025-09-22.0 +++ /dev/null @@ -1,122 +0,0 @@ -2025-09-22 01:17:11,757 INFO [SelectorManager] Load SelectorContextBuilder(class com.alibaba.nacos.naming.selector.context.CmdbSelectorContextBuilder) contextType(CMDB) successfully. - -2025-09-22 01:17:11,757 INFO [SelectorManager] Load SelectorContextBuilder(class com.alibaba.nacos.naming.selector.context.NoneSelectorContextBuilder) contextType(NONE) successfully. - -2025-09-22 01:17:11,759 INFO [SelectorManager] Load Selector(class com.alibaba.nacos.naming.selector.LabelSelector) type(label) contextType(CMDB) successfully. - -2025-09-22 01:17:11,759 INFO [SelectorManager] Load Selector(class com.alibaba.nacos.naming.selector.NoneSelector) type(none) contextType(NONE) successfully. - -2025-09-22 01:17:16,912 INFO Load instance extension handler [] - -2025-09-22 01:18:14,637 INFO Client connection 192.168.31.101:1300#true connect - -2025-09-22 01:18:14,667 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=0}, 192.168.31.101:1300#true - -2025-09-22 01:18:14,695 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE - -2025-09-22 01:44:39,496 INFO Client connection 192.168.31.101:1333#true connect - -2025-09-22 01:44:39,496 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=0}, 192.168.31.101:1333#true - -2025-09-22 01:44:39,498 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE - -2025-09-22 01:44:39,574 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=1}, 192.168.31.101:1333#true - -2025-09-22 01:44:44,696 INFO Client connection 192.168.31.101:1301#true connect - -2025-09-22 01:44:44,696 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=0}, 192.168.31.101:1301#true - -2025-09-22 01:44:44,696 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-product,changed type ADD_SERVICE - -2025-09-22 01:44:44,784 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=1}, 192.168.31.101:1301#true - -2025-09-22 01:44:47,793 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=1}, 192.168.31.101:1300#true - -2025-09-22 01:48:48,209 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2}, 192.168.31.101:1333#true - -2025-09-22 01:48:48,289 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=3}, 192.168.31.101:1333#true - -2025-09-22 01:49:55,744 INFO [NamingServerHttpClientManager] Start destroying HTTP-Client - -2025-09-22 01:49:55,753 INFO [NamingServerHttpClientManager] Completed destruction of HTTP-Client - -2025-09-22 01:50:11,470 INFO [SelectorManager] Load SelectorContextBuilder(class com.alibaba.nacos.naming.selector.context.CmdbSelectorContextBuilder) contextType(CMDB) successfully. - -2025-09-22 01:50:11,470 INFO [SelectorManager] Load SelectorContextBuilder(class com.alibaba.nacos.naming.selector.context.NoneSelectorContextBuilder) contextType(NONE) successfully. - -2025-09-22 01:50:11,471 INFO [SelectorManager] Load Selector(class com.alibaba.nacos.naming.selector.LabelSelector) type(label) contextType(CMDB) successfully. - -2025-09-22 01:50:11,471 INFO [SelectorManager] Load Selector(class com.alibaba.nacos.naming.selector.NoneSelector) type(none) contextType(NONE) successfully. - -2025-09-22 01:50:16,662 INFO Load instance extension handler [] - -2025-09-22 01:50:18,404 INFO Client connection 192.168.31.101:1300#true connect - -2025-09-22 01:50:18,404 INFO Client connection 192.168.31.101:1333#true connect - -2025-09-22 01:50:18,431 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=0}, 192.168.31.101:1300#true - -2025-09-22 01:50:18,432 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=0}, 192.168.31.101:1333#true - -2025-09-22 01:50:18,432 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=0}, 192.168.31.101:1333#true - -2025-09-22 01:50:18,461 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE - -2025-09-22 01:50:18,461 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@main-app,changed type ADD_SERVICE - -2025-09-22 01:50:20,023 INFO Client connection 192.168.31.101:1301#true connect - -2025-09-22 01:50:20,024 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=0}, 192.168.31.101:1301#true - -2025-09-22 01:50:20,024 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=0}, 192.168.31.101:1301#true - -2025-09-22 01:50:20,024 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-product,changed type ADD_SERVICE - -2025-09-22 02:01:31,319 INFO Client connection 192.168.31.101:59690#true connect - -2025-09-22 02:02:38,627 INFO Client connection 192.168.31.101:51777#true connect - -2025-09-22 02:02:38,638 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=1}, 192.168.31.101:1300#true - -2025-09-22 02:03:04,891 INFO Client connection 192.168.31.101:59690#true disconnect, remove instances and subscribers - -2025-09-22 02:04:28,524 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=2}, 192.168.31.101:1300#true - -2025-09-22 02:04:49,908 INFO Client connection 192.168.31.101:51777#true disconnect, remove instances and subscribers - -2025-09-22 02:09:59,676 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=2}, 192.168.31.101:1333#true - -2025-09-22 02:09:59,753 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=3}, 192.168.31.101:1333#true - -2025-09-22 02:10:06,555 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=2}, 192.168.31.101:1301#true - -2025-09-22 02:10:06,641 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=3}, 192.168.31.101:1301#true - -2025-09-22 02:10:11,149 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=3}, 192.168.31.101:1300#true - -2025-09-22 02:21:23,688 INFO [AUTO-DELETE-IP] service: Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=4}, ip: {"ip":"192.168.31.101","port":1333,"healthy":false,"cluster":"DEFAULT","extendDatum":{"customInstanceId":"192.168.31.101#1333#DEFAULT#DEFAULT_GROUP@@app-shared"},"lastHeartBeatTime":1758478850332,"metadataId":"192.168.31.101:1333:DEFAULT"} - -2025-09-22 02:21:23,688 INFO Client remove for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=4}, 192.168.31.101:1333#true - -2025-09-22 02:21:23,692 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type DELETE_SERVICE - -2025-09-22 02:21:25,026 INFO Client connection 192.168.31.101:1333#true disconnect, remove instances and subscribers - -2025-09-22 02:22:02,231 INFO Client connection 192.168.31.101:1333#true connect - -2025-09-22 02:22:02,231 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=5}, 192.168.31.101:1333#true - -2025-09-22 02:22:02,231 WARN [fuzzy-watch] service change matched,service key public@@DEFAULT_GROUP@@app-shared,changed type ADD_SERVICE - -2025-09-22 02:22:08,680 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=6}, 192.168.31.101:1333#true - -2025-09-22 02:22:08,768 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-shared', ephemeral=true, revision=7}, 192.168.31.101:1333#true - -2025-09-22 02:22:13,631 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=4}, 192.168.31.101:1301#true - -2025-09-22 02:22:18,736 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=5}, 192.168.31.101:1301#true - -2025-09-22 02:22:18,808 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='app-product', ephemeral=true, revision=6}, 192.168.31.101:1301#true - -2025-09-22 02:22:26,656 INFO Client change for service Service{namespace='public', group='DEFAULT_GROUP', name='main-app', ephemeral=true, revision=4}, 192.168.31.101:1300#true - diff --git a/docker/nacos/standalone-logs/plugin-control-connection.log b/docker/nacos/standalone-logs/plugin-control-connection.log deleted file mode 100644 index d629fd4..0000000 --- a/docker/nacos/standalone-logs/plugin-control-connection.log +++ /dev/null @@ -1,22152 +0,0 @@ -2025-09-26 00:00:01,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:02,885 INFO Connection check task start - -2025-09-26 00:00:02,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:02,886 INFO Out dated connection ,size=0 - -2025-09-26 00:00:02,886 INFO Connection check task end - -2025-09-26 00:00:04,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:05,886 INFO Connection check task start - -2025-09-26 00:00:05,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:05,886 INFO Out dated connection ,size=0 - -2025-09-26 00:00:05,886 INFO Connection check task end - -2025-09-26 00:00:07,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:08,887 INFO Connection check task start - -2025-09-26 00:00:08,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:08,887 INFO Out dated connection ,size=0 - -2025-09-26 00:00:08,887 INFO Connection check task end - -2025-09-26 00:00:10,607 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:11,889 INFO Connection check task start - -2025-09-26 00:00:11,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:11,890 INFO Out dated connection ,size=0 - -2025-09-26 00:00:11,890 INFO Connection check task end - -2025-09-26 00:00:13,608 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:14,890 INFO Connection check task start - -2025-09-26 00:00:14,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:14,890 INFO Out dated connection ,size=0 - -2025-09-26 00:00:14,890 INFO Connection check task end - -2025-09-26 00:00:16,609 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:17,891 INFO Connection check task start - -2025-09-26 00:00:17,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:17,892 INFO Out dated connection ,size=0 - -2025-09-26 00:00:17,892 INFO Connection check task end - -2025-09-26 00:00:19,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:20,892 INFO Connection check task start - -2025-09-26 00:00:20,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:20,892 INFO Out dated connection ,size=0 - -2025-09-26 00:00:20,892 INFO Connection check task end - -2025-09-26 00:00:22,611 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:23,893 INFO Connection check task start - -2025-09-26 00:00:23,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:23,893 INFO Out dated connection ,size=0 - -2025-09-26 00:00:23,893 INFO Connection check task end - -2025-09-26 00:00:25,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:26,893 INFO Connection check task start - -2025-09-26 00:00:26,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:26,893 INFO Out dated connection ,size=0 - -2025-09-26 00:00:26,893 INFO Connection check task end - -2025-09-26 00:00:28,612 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:29,894 INFO Connection check task start - -2025-09-26 00:00:29,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:29,894 INFO Out dated connection ,size=0 - -2025-09-26 00:00:29,894 INFO Connection check task end - -2025-09-26 00:00:31,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:32,895 INFO Connection check task start - -2025-09-26 00:00:32,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:32,895 INFO Out dated connection ,size=0 - -2025-09-26 00:00:32,895 INFO Connection check task end - -2025-09-26 00:00:34,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:35,896 INFO Connection check task start - -2025-09-26 00:00:35,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:35,896 INFO Out dated connection ,size=0 - -2025-09-26 00:00:35,896 INFO Connection check task end - -2025-09-26 00:00:37,614 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:38,897 INFO Connection check task start - -2025-09-26 00:00:38,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:38,897 INFO Out dated connection ,size=0 - -2025-09-26 00:00:38,898 INFO Connection check task end - -2025-09-26 00:00:40,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:41,899 INFO Connection check task start - -2025-09-26 00:00:41,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:41,899 INFO Out dated connection ,size=0 - -2025-09-26 00:00:41,899 INFO Connection check task end - -2025-09-26 00:00:43,615 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:44,899 INFO Connection check task start - -2025-09-26 00:00:44,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:44,900 INFO Out dated connection ,size=0 - -2025-09-26 00:00:44,900 INFO Connection check task end - -2025-09-26 00:00:46,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:47,900 INFO Connection check task start - -2025-09-26 00:00:47,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:47,900 INFO Out dated connection ,size=0 - -2025-09-26 00:00:47,900 INFO Connection check task end - -2025-09-26 00:00:49,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:50,901 INFO Connection check task start - -2025-09-26 00:00:50,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:50,901 INFO Out dated connection ,size=0 - -2025-09-26 00:00:50,901 INFO Connection check task end - -2025-09-26 00:00:52,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:53,902 INFO Connection check task start - -2025-09-26 00:00:53,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:53,902 INFO Out dated connection ,size=0 - -2025-09-26 00:00:53,902 INFO Connection check task end - -2025-09-26 00:00:55,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:56,902 INFO Connection check task start - -2025-09-26 00:00:56,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:56,906 INFO Out dated connection ,size=0 - -2025-09-26 00:00:56,906 INFO Connection check task end - -2025-09-26 00:00:58,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:00:59,907 INFO Connection check task start - -2025-09-26 00:00:59,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:00:59,907 INFO Out dated connection ,size=0 - -2025-09-26 00:00:59,907 INFO Connection check task end - -2025-09-26 00:01:01,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:02,907 INFO Connection check task start - -2025-09-26 00:01:02,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:02,907 INFO Out dated connection ,size=0 - -2025-09-26 00:01:02,907 INFO Connection check task end - -2025-09-26 00:01:04,621 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:05,908 INFO Connection check task start - -2025-09-26 00:01:05,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:05,908 INFO Out dated connection ,size=0 - -2025-09-26 00:01:05,908 INFO Connection check task end - -2025-09-26 00:01:07,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:08,909 INFO Connection check task start - -2025-09-26 00:01:08,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:08,909 INFO Out dated connection ,size=0 - -2025-09-26 00:01:08,909 INFO Connection check task end - -2025-09-26 00:01:10,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:11,910 INFO Connection check task start - -2025-09-26 00:01:11,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:11,910 INFO Out dated connection ,size=0 - -2025-09-26 00:01:11,910 INFO Connection check task end - -2025-09-26 00:01:13,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:14,910 INFO Connection check task start - -2025-09-26 00:01:14,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:14,911 INFO Out dated connection ,size=0 - -2025-09-26 00:01:14,911 INFO Connection check task end - -2025-09-26 00:01:16,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:17,911 INFO Connection check task start - -2025-09-26 00:01:17,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:17,912 INFO Out dated connection ,size=0 - -2025-09-26 00:01:17,912 INFO Connection check task end - -2025-09-26 00:01:19,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:20,913 INFO Connection check task start - -2025-09-26 00:01:20,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:20,913 INFO Out dated connection ,size=0 - -2025-09-26 00:01:20,913 INFO Connection check task end - -2025-09-26 00:01:22,625 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:23,914 INFO Connection check task start - -2025-09-26 00:01:23,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:23,915 INFO Out dated connection ,size=0 - -2025-09-26 00:01:23,915 INFO Connection check task end - -2025-09-26 00:01:25,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:26,915 INFO Connection check task start - -2025-09-26 00:01:26,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:26,915 INFO Out dated connection ,size=0 - -2025-09-26 00:01:26,915 INFO Connection check task end - -2025-09-26 00:01:28,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:29,915 INFO Connection check task start - -2025-09-26 00:01:29,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:29,916 INFO Out dated connection ,size=0 - -2025-09-26 00:01:29,916 INFO Connection check task end - -2025-09-26 00:01:31,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:32,917 INFO Connection check task start - -2025-09-26 00:01:32,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:32,917 INFO Out dated connection ,size=0 - -2025-09-26 00:01:32,917 INFO Connection check task end - -2025-09-26 00:01:34,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:35,918 INFO Connection check task start - -2025-09-26 00:01:35,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:35,918 INFO Out dated connection ,size=0 - -2025-09-26 00:01:35,918 INFO Connection check task end - -2025-09-26 00:01:37,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:38,919 INFO Connection check task start - -2025-09-26 00:01:38,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:38,919 INFO Out dated connection ,size=0 - -2025-09-26 00:01:38,919 INFO Connection check task end - -2025-09-26 00:01:40,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:41,919 INFO Connection check task start - -2025-09-26 00:01:41,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:41,919 INFO Out dated connection ,size=0 - -2025-09-26 00:01:41,920 INFO Connection check task end - -2025-09-26 00:01:43,631 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:44,920 INFO Connection check task start - -2025-09-26 00:01:44,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:44,921 INFO Out dated connection ,size=0 - -2025-09-26 00:01:44,921 INFO Connection check task end - -2025-09-26 00:01:46,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:47,922 INFO Connection check task start - -2025-09-26 00:01:47,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:47,922 INFO Out dated connection ,size=0 - -2025-09-26 00:01:47,922 INFO Connection check task end - -2025-09-26 00:01:49,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:50,922 INFO Connection check task start - -2025-09-26 00:01:50,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:50,922 INFO Out dated connection ,size=0 - -2025-09-26 00:01:50,923 INFO Connection check task end - -2025-09-26 00:01:52,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:53,924 INFO Connection check task start - -2025-09-26 00:01:53,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:53,924 INFO Out dated connection ,size=0 - -2025-09-26 00:01:53,924 INFO Connection check task end - -2025-09-26 00:01:55,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:56,924 INFO Connection check task start - -2025-09-26 00:01:56,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:56,924 INFO Out dated connection ,size=0 - -2025-09-26 00:01:56,924 INFO Connection check task end - -2025-09-26 00:01:58,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:01:59,925 INFO Connection check task start - -2025-09-26 00:01:59,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:01:59,925 INFO Out dated connection ,size=0 - -2025-09-26 00:01:59,925 INFO Connection check task end - -2025-09-26 00:02:01,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:02,926 INFO Connection check task start - -2025-09-26 00:02:02,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:02,926 INFO Out dated connection ,size=0 - -2025-09-26 00:02:02,926 INFO Connection check task end - -2025-09-26 00:02:04,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:05,927 INFO Connection check task start - -2025-09-26 00:02:05,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:05,927 INFO Out dated connection ,size=0 - -2025-09-26 00:02:05,927 INFO Connection check task end - -2025-09-26 00:02:07,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:08,927 INFO Connection check task start - -2025-09-26 00:02:08,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:08,928 INFO Out dated connection ,size=0 - -2025-09-26 00:02:08,928 INFO Connection check task end - -2025-09-26 00:02:10,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:11,929 INFO Connection check task start - -2025-09-26 00:02:11,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:11,929 INFO Out dated connection ,size=0 - -2025-09-26 00:02:11,929 INFO Connection check task end - -2025-09-26 00:02:13,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:14,930 INFO Connection check task start - -2025-09-26 00:02:14,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:14,930 INFO Out dated connection ,size=0 - -2025-09-26 00:02:14,930 INFO Connection check task end - -2025-09-26 00:02:16,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:17,931 INFO Connection check task start - -2025-09-26 00:02:17,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:17,931 INFO Out dated connection ,size=0 - -2025-09-26 00:02:17,931 INFO Connection check task end - -2025-09-26 00:02:19,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:20,932 INFO Connection check task start - -2025-09-26 00:02:20,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:20,932 INFO Out dated connection ,size=0 - -2025-09-26 00:02:20,932 INFO Connection check task end - -2025-09-26 00:02:22,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:23,933 INFO Connection check task start - -2025-09-26 00:02:23,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:23,933 INFO Out dated connection ,size=0 - -2025-09-26 00:02:23,933 INFO Connection check task end - -2025-09-26 00:02:25,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:26,933 INFO Connection check task start - -2025-09-26 00:02:26,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:26,934 INFO Out dated connection ,size=0 - -2025-09-26 00:02:26,934 INFO Connection check task end - -2025-09-26 00:02:28,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:29,934 INFO Connection check task start - -2025-09-26 00:02:29,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:29,935 INFO Out dated connection ,size=0 - -2025-09-26 00:02:29,935 INFO Connection check task end - -2025-09-26 00:02:31,644 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:32,935 INFO Connection check task start - -2025-09-26 00:02:32,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:32,935 INFO Out dated connection ,size=0 - -2025-09-26 00:02:32,935 INFO Connection check task end - -2025-09-26 00:02:34,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:35,936 INFO Connection check task start - -2025-09-26 00:02:35,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:35,936 INFO Out dated connection ,size=0 - -2025-09-26 00:02:35,936 INFO Connection check task end - -2025-09-26 00:02:37,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:38,937 INFO Connection check task start - -2025-09-26 00:02:38,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:38,937 INFO Out dated connection ,size=0 - -2025-09-26 00:02:38,937 INFO Connection check task end - -2025-09-26 00:02:40,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:41,938 INFO Connection check task start - -2025-09-26 00:02:41,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:41,938 INFO Out dated connection ,size=0 - -2025-09-26 00:02:41,938 INFO Connection check task end - -2025-09-26 00:02:43,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:44,939 INFO Connection check task start - -2025-09-26 00:02:44,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:44,940 INFO Out dated connection ,size=0 - -2025-09-26 00:02:44,940 INFO Connection check task end - -2025-09-26 00:02:46,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:47,941 INFO Connection check task start - -2025-09-26 00:02:47,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:47,941 INFO Out dated connection ,size=0 - -2025-09-26 00:02:47,941 INFO Connection check task end - -2025-09-26 00:02:49,648 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:50,942 INFO Connection check task start - -2025-09-26 00:02:50,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:50,942 INFO Out dated connection ,size=0 - -2025-09-26 00:02:50,942 INFO Connection check task end - -2025-09-26 00:02:52,651 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:53,942 INFO Connection check task start - -2025-09-26 00:02:53,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:53,942 INFO Out dated connection ,size=0 - -2025-09-26 00:02:53,942 INFO Connection check task end - -2025-09-26 00:02:55,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:56,943 INFO Connection check task start - -2025-09-26 00:02:56,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:56,943 INFO Out dated connection ,size=0 - -2025-09-26 00:02:56,943 INFO Connection check task end - -2025-09-26 00:02:58,652 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:02:59,943 INFO Connection check task start - -2025-09-26 00:02:59,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:02:59,944 INFO Out dated connection ,size=0 - -2025-09-26 00:02:59,944 INFO Connection check task end - -2025-09-26 00:03:01,653 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:02,944 INFO Connection check task start - -2025-09-26 00:03:02,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:02,944 INFO Out dated connection ,size=0 - -2025-09-26 00:03:02,944 INFO Connection check task end - -2025-09-26 00:03:04,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:05,945 INFO Connection check task start - -2025-09-26 00:03:05,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:05,945 INFO Out dated connection ,size=0 - -2025-09-26 00:03:05,945 INFO Connection check task end - -2025-09-26 00:03:07,654 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:08,945 INFO Connection check task start - -2025-09-26 00:03:08,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:08,945 INFO Out dated connection ,size=0 - -2025-09-26 00:03:08,945 INFO Connection check task end - -2025-09-26 00:03:10,655 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:11,946 INFO Connection check task start - -2025-09-26 00:03:11,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:11,946 INFO Out dated connection ,size=0 - -2025-09-26 00:03:11,946 INFO Connection check task end - -2025-09-26 00:03:13,656 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:14,947 INFO Connection check task start - -2025-09-26 00:03:14,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:14,948 INFO Out dated connection ,size=0 - -2025-09-26 00:03:14,948 INFO Connection check task end - -2025-09-26 00:03:16,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:17,948 INFO Connection check task start - -2025-09-26 00:03:17,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:17,948 INFO Out dated connection ,size=0 - -2025-09-26 00:03:17,948 INFO Connection check task end - -2025-09-26 00:03:19,657 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:20,948 INFO Connection check task start - -2025-09-26 00:03:20,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:20,949 INFO Out dated connection ,size=0 - -2025-09-26 00:03:20,949 INFO Connection check task end - -2025-09-26 00:03:22,658 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:23,949 INFO Connection check task start - -2025-09-26 00:03:23,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:23,949 INFO Out dated connection ,size=0 - -2025-09-26 00:03:23,949 INFO Connection check task end - -2025-09-26 00:03:25,659 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:26,949 INFO Connection check task start - -2025-09-26 00:03:26,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:26,950 INFO Out dated connection ,size=0 - -2025-09-26 00:03:26,950 INFO Connection check task end - -2025-09-26 00:03:28,660 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:29,950 INFO Connection check task start - -2025-09-26 00:03:29,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:29,950 INFO Out dated connection ,size=0 - -2025-09-26 00:03:29,950 INFO Connection check task end - -2025-09-26 00:03:31,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:32,951 INFO Connection check task start - -2025-09-26 00:03:32,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:32,951 INFO Out dated connection ,size=0 - -2025-09-26 00:03:32,951 INFO Connection check task end - -2025-09-26 00:03:34,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:35,951 INFO Connection check task start - -2025-09-26 00:03:35,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:35,951 INFO Out dated connection ,size=0 - -2025-09-26 00:03:35,951 INFO Connection check task end - -2025-09-26 00:03:37,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:38,952 INFO Connection check task start - -2025-09-26 00:03:38,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:38,952 INFO Out dated connection ,size=0 - -2025-09-26 00:03:38,952 INFO Connection check task end - -2025-09-26 00:03:40,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:41,952 INFO Connection check task start - -2025-09-26 00:03:41,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:41,954 INFO Out dated connection ,size=0 - -2025-09-26 00:03:41,954 INFO Connection check task end - -2025-09-26 00:03:43,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:44,954 INFO Connection check task start - -2025-09-26 00:03:44,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:44,954 INFO Out dated connection ,size=0 - -2025-09-26 00:03:44,954 INFO Connection check task end - -2025-09-26 00:03:46,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:47,955 INFO Connection check task start - -2025-09-26 00:03:47,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:47,955 INFO Out dated connection ,size=0 - -2025-09-26 00:03:47,955 INFO Connection check task end - -2025-09-26 00:03:49,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:50,955 INFO Connection check task start - -2025-09-26 00:03:50,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:50,955 INFO Out dated connection ,size=0 - -2025-09-26 00:03:50,955 INFO Connection check task end - -2025-09-26 00:03:52,667 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:53,957 INFO Connection check task start - -2025-09-26 00:03:53,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:53,957 INFO Out dated connection ,size=0 - -2025-09-26 00:03:53,957 INFO Connection check task end - -2025-09-26 00:03:55,668 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:56,958 INFO Connection check task start - -2025-09-26 00:03:56,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:56,958 INFO Out dated connection ,size=0 - -2025-09-26 00:03:56,958 INFO Connection check task end - -2025-09-26 00:03:58,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:03:59,958 INFO Connection check task start - -2025-09-26 00:03:59,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:03:59,958 INFO Out dated connection ,size=0 - -2025-09-26 00:03:59,958 INFO Connection check task end - -2025-09-26 00:04:01,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:02,959 INFO Connection check task start - -2025-09-26 00:04:02,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:02,959 INFO Out dated connection ,size=0 - -2025-09-26 00:04:02,959 INFO Connection check task end - -2025-09-26 00:04:04,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:05,959 INFO Connection check task start - -2025-09-26 00:04:05,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:05,960 INFO Out dated connection ,size=0 - -2025-09-26 00:04:05,960 INFO Connection check task end - -2025-09-26 00:04:07,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:08,961 INFO Connection check task start - -2025-09-26 00:04:08,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:08,961 INFO Out dated connection ,size=0 - -2025-09-26 00:04:08,961 INFO Connection check task end - -2025-09-26 00:04:10,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:11,962 INFO Connection check task start - -2025-09-26 00:04:11,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:11,962 INFO Out dated connection ,size=0 - -2025-09-26 00:04:11,962 INFO Connection check task end - -2025-09-26 00:04:13,674 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:14,963 INFO Connection check task start - -2025-09-26 00:04:14,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:14,963 INFO Out dated connection ,size=0 - -2025-09-26 00:04:14,963 INFO Connection check task end - -2025-09-26 00:04:16,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:17,963 INFO Connection check task start - -2025-09-26 00:04:17,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:17,964 INFO Out dated connection ,size=0 - -2025-09-26 00:04:17,964 INFO Connection check task end - -2025-09-26 00:04:19,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:20,964 INFO Connection check task start - -2025-09-26 00:04:20,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:20,964 INFO Out dated connection ,size=0 - -2025-09-26 00:04:20,964 INFO Connection check task end - -2025-09-26 00:04:22,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:23,965 INFO Connection check task start - -2025-09-26 00:04:23,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:23,966 INFO Out dated connection ,size=0 - -2025-09-26 00:04:23,966 INFO Connection check task end - -2025-09-26 00:04:25,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:26,966 INFO Connection check task start - -2025-09-26 00:04:26,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:26,967 INFO Out dated connection ,size=0 - -2025-09-26 00:04:26,967 INFO Connection check task end - -2025-09-26 00:04:28,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:29,967 INFO Connection check task start - -2025-09-26 00:04:29,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:29,967 INFO Out dated connection ,size=0 - -2025-09-26 00:04:29,967 INFO Connection check task end - -2025-09-26 00:04:31,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:32,968 INFO Connection check task start - -2025-09-26 00:04:32,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:32,968 INFO Out dated connection ,size=0 - -2025-09-26 00:04:32,968 INFO Connection check task end - -2025-09-26 00:04:34,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:35,968 INFO Connection check task start - -2025-09-26 00:04:35,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:35,969 INFO Out dated connection ,size=0 - -2025-09-26 00:04:35,969 INFO Connection check task end - -2025-09-26 00:04:37,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:38,969 INFO Connection check task start - -2025-09-26 00:04:38,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:38,970 INFO Out dated connection ,size=0 - -2025-09-26 00:04:38,970 INFO Connection check task end - -2025-09-26 00:04:40,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:41,970 INFO Connection check task start - -2025-09-26 00:04:41,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:41,971 INFO Out dated connection ,size=0 - -2025-09-26 00:04:41,971 INFO Connection check task end - -2025-09-26 00:04:43,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:44,971 INFO Connection check task start - -2025-09-26 00:04:44,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:44,971 INFO Out dated connection ,size=0 - -2025-09-26 00:04:44,971 INFO Connection check task end - -2025-09-26 00:04:46,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:47,971 INFO Connection check task start - -2025-09-26 00:04:47,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:47,972 INFO Out dated connection ,size=0 - -2025-09-26 00:04:47,972 INFO Connection check task end - -2025-09-26 00:04:49,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:50,972 INFO Connection check task start - -2025-09-26 00:04:50,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:50,972 INFO Out dated connection ,size=0 - -2025-09-26 00:04:50,972 INFO Connection check task end - -2025-09-26 00:04:52,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:53,973 INFO Connection check task start - -2025-09-26 00:04:53,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:53,974 INFO Out dated connection ,size=0 - -2025-09-26 00:04:53,974 INFO Connection check task end - -2025-09-26 00:04:55,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:56,975 INFO Connection check task start - -2025-09-26 00:04:56,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:56,975 INFO Out dated connection ,size=0 - -2025-09-26 00:04:56,975 INFO Connection check task end - -2025-09-26 00:04:58,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:04:59,975 INFO Connection check task start - -2025-09-26 00:04:59,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:04:59,975 INFO Out dated connection ,size=0 - -2025-09-26 00:04:59,975 INFO Connection check task end - -2025-09-26 00:05:01,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:02,976 INFO Connection check task start - -2025-09-26 00:05:02,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:02,976 INFO Out dated connection ,size=0 - -2025-09-26 00:05:02,976 INFO Connection check task end - -2025-09-26 00:05:04,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:05,976 INFO Connection check task start - -2025-09-26 00:05:05,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:05,977 INFO Out dated connection ,size=0 - -2025-09-26 00:05:05,977 INFO Connection check task end - -2025-09-26 00:05:07,688 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:08,978 INFO Connection check task start - -2025-09-26 00:05:08,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:08,978 INFO Out dated connection ,size=0 - -2025-09-26 00:05:08,978 INFO Connection check task end - -2025-09-26 00:05:10,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:11,979 INFO Connection check task start - -2025-09-26 00:05:11,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:11,979 INFO Out dated connection ,size=0 - -2025-09-26 00:05:11,979 INFO Connection check task end - -2025-09-26 00:05:13,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:14,980 INFO Connection check task start - -2025-09-26 00:05:14,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:14,980 INFO Out dated connection ,size=0 - -2025-09-26 00:05:14,980 INFO Connection check task end - -2025-09-26 00:05:16,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:17,981 INFO Connection check task start - -2025-09-26 00:05:17,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:17,981 INFO Out dated connection ,size=0 - -2025-09-26 00:05:17,981 INFO Connection check task end - -2025-09-26 00:05:19,692 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:20,981 INFO Connection check task start - -2025-09-26 00:05:20,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:20,982 INFO Out dated connection ,size=0 - -2025-09-26 00:05:20,982 INFO Connection check task end - -2025-09-26 00:05:22,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:23,983 INFO Connection check task start - -2025-09-26 00:05:23,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:23,983 INFO Out dated connection ,size=0 - -2025-09-26 00:05:23,983 INFO Connection check task end - -2025-09-26 00:05:25,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:26,984 INFO Connection check task start - -2025-09-26 00:05:26,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:26,984 INFO Out dated connection ,size=0 - -2025-09-26 00:05:26,984 INFO Connection check task end - -2025-09-26 00:05:28,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:29,985 INFO Connection check task start - -2025-09-26 00:05:29,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:29,985 INFO Out dated connection ,size=0 - -2025-09-26 00:05:29,985 INFO Connection check task end - -2025-09-26 00:05:31,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:32,985 INFO Connection check task start - -2025-09-26 00:05:32,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:32,985 INFO Out dated connection ,size=0 - -2025-09-26 00:05:32,985 INFO Connection check task end - -2025-09-26 00:05:34,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:35,986 INFO Connection check task start - -2025-09-26 00:05:35,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:35,986 INFO Out dated connection ,size=0 - -2025-09-26 00:05:35,986 INFO Connection check task end - -2025-09-26 00:05:37,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:38,987 INFO Connection check task start - -2025-09-26 00:05:38,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:38,987 INFO Out dated connection ,size=0 - -2025-09-26 00:05:38,987 INFO Connection check task end - -2025-09-26 00:05:40,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:41,987 INFO Connection check task start - -2025-09-26 00:05:41,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:41,987 INFO Out dated connection ,size=0 - -2025-09-26 00:05:41,987 INFO Connection check task end - -2025-09-26 00:05:43,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:44,988 INFO Connection check task start - -2025-09-26 00:05:44,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:44,988 INFO Out dated connection ,size=0 - -2025-09-26 00:05:44,988 INFO Connection check task end - -2025-09-26 00:05:46,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:47,988 INFO Connection check task start - -2025-09-26 00:05:47,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:47,989 INFO Out dated connection ,size=0 - -2025-09-26 00:05:47,989 INFO Connection check task end - -2025-09-26 00:05:49,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:50,989 INFO Connection check task start - -2025-09-26 00:05:50,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:50,989 INFO Out dated connection ,size=0 - -2025-09-26 00:05:50,989 INFO Connection check task end - -2025-09-26 00:05:52,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:53,989 INFO Connection check task start - -2025-09-26 00:05:53,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:53,990 INFO Out dated connection ,size=0 - -2025-09-26 00:05:53,990 INFO Connection check task end - -2025-09-26 00:05:55,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:56,990 INFO Connection check task start - -2025-09-26 00:05:56,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:56,990 INFO Out dated connection ,size=0 - -2025-09-26 00:05:56,990 INFO Connection check task end - -2025-09-26 00:05:58,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:05:59,991 INFO Connection check task start - -2025-09-26 00:05:59,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:05:59,991 INFO Out dated connection ,size=0 - -2025-09-26 00:05:59,991 INFO Connection check task end - -2025-09-26 00:06:01,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:02,991 INFO Connection check task start - -2025-09-26 00:06:02,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:02,991 INFO Out dated connection ,size=0 - -2025-09-26 00:06:02,991 INFO Connection check task end - -2025-09-26 00:06:04,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:05,992 INFO Connection check task start - -2025-09-26 00:06:05,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:05,992 INFO Out dated connection ,size=0 - -2025-09-26 00:06:05,992 INFO Connection check task end - -2025-09-26 00:06:07,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:08,993 INFO Connection check task start - -2025-09-26 00:06:08,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:08,993 INFO Out dated connection ,size=0 - -2025-09-26 00:06:08,993 INFO Connection check task end - -2025-09-26 00:06:10,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:11,993 INFO Connection check task start - -2025-09-26 00:06:11,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:11,993 INFO Out dated connection ,size=0 - -2025-09-26 00:06:11,993 INFO Connection check task end - -2025-09-26 00:06:13,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:14,994 INFO Connection check task start - -2025-09-26 00:06:14,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:14,994 INFO Out dated connection ,size=0 - -2025-09-26 00:06:14,994 INFO Connection check task end - -2025-09-26 00:06:16,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:17,994 INFO Connection check task start - -2025-09-26 00:06:17,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:17,995 INFO Out dated connection ,size=0 - -2025-09-26 00:06:17,995 INFO Connection check task end - -2025-09-26 00:06:19,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:20,995 INFO Connection check task start - -2025-09-26 00:06:20,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:20,995 INFO Out dated connection ,size=0 - -2025-09-26 00:06:20,995 INFO Connection check task end - -2025-09-26 00:06:22,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:23,995 INFO Connection check task start - -2025-09-26 00:06:23,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:23,996 INFO Out dated connection ,size=0 - -2025-09-26 00:06:23,996 INFO Connection check task end - -2025-09-26 00:06:25,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:26,996 INFO Connection check task start - -2025-09-26 00:06:26,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:26,996 INFO Out dated connection ,size=0 - -2025-09-26 00:06:26,996 INFO Connection check task end - -2025-09-26 00:06:28,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:29,996 INFO Connection check task start - -2025-09-26 00:06:29,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:29,996 INFO Out dated connection ,size=0 - -2025-09-26 00:06:29,996 INFO Connection check task end - -2025-09-26 00:06:31,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:32,997 INFO Connection check task start - -2025-09-26 00:06:32,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:32,997 INFO Out dated connection ,size=0 - -2025-09-26 00:06:32,997 INFO Connection check task end - -2025-09-26 00:06:34,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:35,997 INFO Connection check task start - -2025-09-26 00:06:35,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:35,997 INFO Out dated connection ,size=0 - -2025-09-26 00:06:35,997 INFO Connection check task end - -2025-09-26 00:06:37,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:38,998 INFO Connection check task start - -2025-09-26 00:06:38,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:38,998 INFO Out dated connection ,size=0 - -2025-09-26 00:06:38,998 INFO Connection check task end - -2025-09-26 00:06:40,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:42,000 INFO Connection check task start - -2025-09-26 00:06:42,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:42,000 INFO Out dated connection ,size=0 - -2025-09-26 00:06:42,000 INFO Connection check task end - -2025-09-26 00:06:43,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:45,001 INFO Connection check task start - -2025-09-26 00:06:45,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:45,001 INFO Out dated connection ,size=0 - -2025-09-26 00:06:45,001 INFO Connection check task end - -2025-09-26 00:06:46,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:48,002 INFO Connection check task start - -2025-09-26 00:06:48,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:48,003 INFO Out dated connection ,size=0 - -2025-09-26 00:06:48,003 INFO Connection check task end - -2025-09-26 00:06:49,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:51,003 INFO Connection check task start - -2025-09-26 00:06:51,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:51,003 INFO Out dated connection ,size=0 - -2025-09-26 00:06:51,003 INFO Connection check task end - -2025-09-26 00:06:52,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:54,003 INFO Connection check task start - -2025-09-26 00:06:54,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:54,004 INFO Out dated connection ,size=0 - -2025-09-26 00:06:54,004 INFO Connection check task end - -2025-09-26 00:06:55,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:06:57,004 INFO Connection check task start - -2025-09-26 00:06:57,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:06:57,004 INFO Out dated connection ,size=0 - -2025-09-26 00:06:57,004 INFO Connection check task end - -2025-09-26 00:06:58,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:00,005 INFO Connection check task start - -2025-09-26 00:07:00,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:00,005 INFO Out dated connection ,size=0 - -2025-09-26 00:07:00,005 INFO Connection check task end - -2025-09-26 00:07:01,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:03,005 INFO Connection check task start - -2025-09-26 00:07:03,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:03,006 INFO Out dated connection ,size=0 - -2025-09-26 00:07:03,006 INFO Connection check task end - -2025-09-26 00:07:04,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:06,006 INFO Connection check task start - -2025-09-26 00:07:06,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:06,006 INFO Out dated connection ,size=0 - -2025-09-26 00:07:06,006 INFO Connection check task end - -2025-09-26 00:07:07,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:09,007 INFO Connection check task start - -2025-09-26 00:07:09,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:09,008 INFO Out dated connection ,size=0 - -2025-09-26 00:07:09,008 INFO Connection check task end - -2025-09-26 00:07:10,732 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:12,008 INFO Connection check task start - -2025-09-26 00:07:12,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:12,008 INFO Out dated connection ,size=0 - -2025-09-26 00:07:12,008 INFO Connection check task end - -2025-09-26 00:07:13,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:15,008 INFO Connection check task start - -2025-09-26 00:07:15,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:15,009 INFO Out dated connection ,size=0 - -2025-09-26 00:07:15,009 INFO Connection check task end - -2025-09-26 00:07:16,734 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:18,009 INFO Connection check task start - -2025-09-26 00:07:18,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:18,010 INFO Out dated connection ,size=0 - -2025-09-26 00:07:18,010 INFO Connection check task end - -2025-09-26 00:07:19,735 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:21,010 INFO Connection check task start - -2025-09-26 00:07:21,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:21,011 INFO Out dated connection ,size=0 - -2025-09-26 00:07:21,011 INFO Connection check task end - -2025-09-26 00:07:22,736 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:24,012 INFO Connection check task start - -2025-09-26 00:07:24,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:24,012 INFO Out dated connection ,size=0 - -2025-09-26 00:07:24,012 INFO Connection check task end - -2025-09-26 00:07:25,737 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:27,013 INFO Connection check task start - -2025-09-26 00:07:27,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:27,013 INFO Out dated connection ,size=0 - -2025-09-26 00:07:27,013 INFO Connection check task end - -2025-09-26 00:07:28,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:30,013 INFO Connection check task start - -2025-09-26 00:07:30,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:30,013 INFO Out dated connection ,size=0 - -2025-09-26 00:07:30,013 INFO Connection check task end - -2025-09-26 00:07:31,738 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:33,014 INFO Connection check task start - -2025-09-26 00:07:33,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:33,015 INFO Out dated connection ,size=0 - -2025-09-26 00:07:33,015 INFO Connection check task end - -2025-09-26 00:07:34,739 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:36,015 INFO Connection check task start - -2025-09-26 00:07:36,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:36,016 INFO Out dated connection ,size=0 - -2025-09-26 00:07:36,016 INFO Connection check task end - -2025-09-26 00:07:37,740 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:39,060 INFO Connection check task start - -2025-09-26 00:07:39,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:39,063 INFO Out dated connection ,size=0 - -2025-09-26 00:07:39,064 INFO Connection check task end - -2025-09-26 00:07:40,742 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:42,064 INFO Connection check task start - -2025-09-26 00:07:42,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:42,064 INFO Out dated connection ,size=0 - -2025-09-26 00:07:42,064 INFO Connection check task end - -2025-09-26 00:07:43,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:45,065 INFO Connection check task start - -2025-09-26 00:07:45,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:45,065 INFO Out dated connection ,size=0 - -2025-09-26 00:07:45,065 INFO Connection check task end - -2025-09-26 00:07:46,744 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:48,066 INFO Connection check task start - -2025-09-26 00:07:48,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:48,066 INFO Out dated connection ,size=0 - -2025-09-26 00:07:48,066 INFO Connection check task end - -2025-09-26 00:07:49,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:51,067 INFO Connection check task start - -2025-09-26 00:07:51,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:51,068 INFO Out dated connection ,size=0 - -2025-09-26 00:07:51,068 INFO Connection check task end - -2025-09-26 00:07:52,745 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:54,068 INFO Connection check task start - -2025-09-26 00:07:54,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:54,068 INFO Out dated connection ,size=0 - -2025-09-26 00:07:54,068 INFO Connection check task end - -2025-09-26 00:07:55,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:07:57,069 INFO Connection check task start - -2025-09-26 00:07:57,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:07:57,069 INFO Out dated connection ,size=0 - -2025-09-26 00:07:57,069 INFO Connection check task end - -2025-09-26 00:07:58,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:00,069 INFO Connection check task start - -2025-09-26 00:08:00,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:00,069 INFO Out dated connection ,size=0 - -2025-09-26 00:08:00,069 INFO Connection check task end - -2025-09-26 00:08:01,748 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:03,069 INFO Connection check task start - -2025-09-26 00:08:03,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:03,070 INFO Out dated connection ,size=0 - -2025-09-26 00:08:03,070 INFO Connection check task end - -2025-09-26 00:08:04,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:06,070 INFO Connection check task start - -2025-09-26 00:08:06,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:06,070 INFO Out dated connection ,size=0 - -2025-09-26 00:08:06,070 INFO Connection check task end - -2025-09-26 00:08:07,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:09,071 INFO Connection check task start - -2025-09-26 00:08:09,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:09,071 INFO Out dated connection ,size=0 - -2025-09-26 00:08:09,071 INFO Connection check task end - -2025-09-26 00:08:10,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:12,071 INFO Connection check task start - -2025-09-26 00:08:12,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:12,071 INFO Out dated connection ,size=0 - -2025-09-26 00:08:12,071 INFO Connection check task end - -2025-09-26 00:08:13,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:15,072 INFO Connection check task start - -2025-09-26 00:08:15,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:15,072 INFO Out dated connection ,size=0 - -2025-09-26 00:08:15,072 INFO Connection check task end - -2025-09-26 00:08:16,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:18,073 INFO Connection check task start - -2025-09-26 00:08:18,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:18,073 INFO Out dated connection ,size=0 - -2025-09-26 00:08:18,073 INFO Connection check task end - -2025-09-26 00:08:19,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:21,074 INFO Connection check task start - -2025-09-26 00:08:21,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:21,074 INFO Out dated connection ,size=0 - -2025-09-26 00:08:21,074 INFO Connection check task end - -2025-09-26 00:08:22,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:24,075 INFO Connection check task start - -2025-09-26 00:08:24,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:24,075 INFO Out dated connection ,size=0 - -2025-09-26 00:08:24,075 INFO Connection check task end - -2025-09-26 00:08:25,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:27,076 INFO Connection check task start - -2025-09-26 00:08:27,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:27,076 INFO Out dated connection ,size=0 - -2025-09-26 00:08:27,076 INFO Connection check task end - -2025-09-26 00:08:28,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:30,077 INFO Connection check task start - -2025-09-26 00:08:30,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:30,077 INFO Out dated connection ,size=0 - -2025-09-26 00:08:30,077 INFO Connection check task end - -2025-09-26 00:08:31,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:33,078 INFO Connection check task start - -2025-09-26 00:08:33,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:33,078 INFO Out dated connection ,size=0 - -2025-09-26 00:08:33,078 INFO Connection check task end - -2025-09-26 00:08:34,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:36,078 INFO Connection check task start - -2025-09-26 00:08:36,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:36,078 INFO Out dated connection ,size=0 - -2025-09-26 00:08:36,078 INFO Connection check task end - -2025-09-26 00:08:37,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:39,079 INFO Connection check task start - -2025-09-26 00:08:39,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:39,079 INFO Out dated connection ,size=0 - -2025-09-26 00:08:39,079 INFO Connection check task end - -2025-09-26 00:08:40,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:42,080 INFO Connection check task start - -2025-09-26 00:08:42,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:42,080 INFO Out dated connection ,size=0 - -2025-09-26 00:08:42,080 INFO Connection check task end - -2025-09-26 00:08:43,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:45,081 INFO Connection check task start - -2025-09-26 00:08:45,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:45,081 INFO Out dated connection ,size=0 - -2025-09-26 00:08:45,081 INFO Connection check task end - -2025-09-26 00:08:46,762 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:48,082 INFO Connection check task start - -2025-09-26 00:08:48,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:48,082 INFO Out dated connection ,size=0 - -2025-09-26 00:08:48,082 INFO Connection check task end - -2025-09-26 00:08:49,763 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:51,082 INFO Connection check task start - -2025-09-26 00:08:51,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:51,082 INFO Out dated connection ,size=0 - -2025-09-26 00:08:51,082 INFO Connection check task end - -2025-09-26 00:08:52,764 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:54,083 INFO Connection check task start - -2025-09-26 00:08:54,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:54,083 INFO Out dated connection ,size=0 - -2025-09-26 00:08:54,083 INFO Connection check task end - -2025-09-26 00:08:55,765 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:08:57,084 INFO Connection check task start - -2025-09-26 00:08:57,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:08:57,084 INFO Out dated connection ,size=0 - -2025-09-26 00:08:57,084 INFO Connection check task end - -2025-09-26 00:08:58,766 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:00,084 INFO Connection check task start - -2025-09-26 00:09:00,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:00,084 INFO Out dated connection ,size=0 - -2025-09-26 00:09:00,084 INFO Connection check task end - -2025-09-26 00:09:01,768 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:03,085 INFO Connection check task start - -2025-09-26 00:09:03,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:03,085 INFO Out dated connection ,size=0 - -2025-09-26 00:09:03,085 INFO Connection check task end - -2025-09-26 00:09:04,770 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:06,085 INFO Connection check task start - -2025-09-26 00:09:06,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:06,085 INFO Out dated connection ,size=0 - -2025-09-26 00:09:06,085 INFO Connection check task end - -2025-09-26 00:09:07,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:09,087 INFO Connection check task start - -2025-09-26 00:09:09,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:09,087 INFO Out dated connection ,size=0 - -2025-09-26 00:09:09,087 INFO Connection check task end - -2025-09-26 00:09:10,771 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:12,087 INFO Connection check task start - -2025-09-26 00:09:12,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:12,088 INFO Out dated connection ,size=0 - -2025-09-26 00:09:12,088 INFO Connection check task end - -2025-09-26 00:09:13,772 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:15,088 INFO Connection check task start - -2025-09-26 00:09:15,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:15,089 INFO Out dated connection ,size=0 - -2025-09-26 00:09:15,089 INFO Connection check task end - -2025-09-26 00:09:16,773 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:18,089 INFO Connection check task start - -2025-09-26 00:09:18,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:18,089 INFO Out dated connection ,size=0 - -2025-09-26 00:09:18,089 INFO Connection check task end - -2025-09-26 00:09:19,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:21,090 INFO Connection check task start - -2025-09-26 00:09:21,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:21,090 INFO Out dated connection ,size=0 - -2025-09-26 00:09:21,090 INFO Connection check task end - -2025-09-26 00:09:22,774 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:24,091 INFO Connection check task start - -2025-09-26 00:09:24,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:24,091 INFO Out dated connection ,size=0 - -2025-09-26 00:09:24,091 INFO Connection check task end - -2025-09-26 00:09:25,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:27,091 INFO Connection check task start - -2025-09-26 00:09:27,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:27,092 INFO Out dated connection ,size=0 - -2025-09-26 00:09:27,092 INFO Connection check task end - -2025-09-26 00:09:28,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:30,092 INFO Connection check task start - -2025-09-26 00:09:30,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:30,093 INFO Out dated connection ,size=0 - -2025-09-26 00:09:30,093 INFO Connection check task end - -2025-09-26 00:09:31,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:33,094 INFO Connection check task start - -2025-09-26 00:09:33,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:33,094 INFO Out dated connection ,size=0 - -2025-09-26 00:09:33,094 INFO Connection check task end - -2025-09-26 00:09:34,778 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:36,094 INFO Connection check task start - -2025-09-26 00:09:36,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:36,094 INFO Out dated connection ,size=0 - -2025-09-26 00:09:36,094 INFO Connection check task end - -2025-09-26 00:09:37,779 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:39,095 INFO Connection check task start - -2025-09-26 00:09:39,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:39,095 INFO Out dated connection ,size=0 - -2025-09-26 00:09:39,095 INFO Connection check task end - -2025-09-26 00:09:40,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:42,096 INFO Connection check task start - -2025-09-26 00:09:42,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:42,096 INFO Out dated connection ,size=0 - -2025-09-26 00:09:42,096 INFO Connection check task end - -2025-09-26 00:09:43,780 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:45,097 INFO Connection check task start - -2025-09-26 00:09:45,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:45,097 INFO Out dated connection ,size=0 - -2025-09-26 00:09:45,097 INFO Connection check task end - -2025-09-26 00:09:46,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:48,098 INFO Connection check task start - -2025-09-26 00:09:48,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:48,098 INFO Out dated connection ,size=0 - -2025-09-26 00:09:48,098 INFO Connection check task end - -2025-09-26 00:09:49,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:51,098 INFO Connection check task start - -2025-09-26 00:09:51,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:51,099 INFO Out dated connection ,size=0 - -2025-09-26 00:09:51,099 INFO Connection check task end - -2025-09-26 00:09:52,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:54,100 INFO Connection check task start - -2025-09-26 00:09:54,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:54,100 INFO Out dated connection ,size=0 - -2025-09-26 00:09:54,100 INFO Connection check task end - -2025-09-26 00:09:55,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:09:57,101 INFO Connection check task start - -2025-09-26 00:09:57,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:09:57,101 INFO Out dated connection ,size=0 - -2025-09-26 00:09:57,101 INFO Connection check task end - -2025-09-26 00:09:58,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:00,102 INFO Connection check task start - -2025-09-26 00:10:00,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:00,102 INFO Out dated connection ,size=0 - -2025-09-26 00:10:00,102 INFO Connection check task end - -2025-09-26 00:10:01,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:03,109 INFO Connection check task start - -2025-09-26 00:10:03,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:03,110 INFO Out dated connection ,size=0 - -2025-09-26 00:10:03,110 INFO Connection check task end - -2025-09-26 00:10:04,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:06,110 INFO Connection check task start - -2025-09-26 00:10:06,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:06,110 INFO Out dated connection ,size=0 - -2025-09-26 00:10:06,110 INFO Connection check task end - -2025-09-26 00:10:07,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:09,111 INFO Connection check task start - -2025-09-26 00:10:09,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:09,111 INFO Out dated connection ,size=0 - -2025-09-26 00:10:09,111 INFO Connection check task end - -2025-09-26 00:10:10,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:12,111 INFO Connection check task start - -2025-09-26 00:10:12,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:12,111 INFO Out dated connection ,size=0 - -2025-09-26 00:10:12,112 INFO Connection check task end - -2025-09-26 00:10:13,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:15,112 INFO Connection check task start - -2025-09-26 00:10:15,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:15,112 INFO Out dated connection ,size=0 - -2025-09-26 00:10:15,112 INFO Connection check task end - -2025-09-26 00:10:16,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:18,112 INFO Connection check task start - -2025-09-26 00:10:18,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:18,113 INFO Out dated connection ,size=0 - -2025-09-26 00:10:18,113 INFO Connection check task end - -2025-09-26 00:10:19,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:21,114 INFO Connection check task start - -2025-09-26 00:10:21,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:21,114 INFO Out dated connection ,size=0 - -2025-09-26 00:10:21,114 INFO Connection check task end - -2025-09-26 00:10:22,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:24,115 INFO Connection check task start - -2025-09-26 00:10:24,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:24,116 INFO Out dated connection ,size=0 - -2025-09-26 00:10:24,116 INFO Connection check task end - -2025-09-26 00:10:25,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:27,117 INFO Connection check task start - -2025-09-26 00:10:27,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:27,117 INFO Out dated connection ,size=0 - -2025-09-26 00:10:27,117 INFO Connection check task end - -2025-09-26 00:10:28,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:30,118 INFO Connection check task start - -2025-09-26 00:10:30,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:30,118 INFO Out dated connection ,size=0 - -2025-09-26 00:10:30,118 INFO Connection check task end - -2025-09-26 00:10:31,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:33,119 INFO Connection check task start - -2025-09-26 00:10:33,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:33,120 INFO Out dated connection ,size=0 - -2025-09-26 00:10:33,120 INFO Connection check task end - -2025-09-26 00:10:34,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:36,120 INFO Connection check task start - -2025-09-26 00:10:36,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:36,121 INFO Out dated connection ,size=0 - -2025-09-26 00:10:36,121 INFO Connection check task end - -2025-09-26 00:10:37,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:39,121 INFO Connection check task start - -2025-09-26 00:10:39,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:39,121 INFO Out dated connection ,size=0 - -2025-09-26 00:10:39,121 INFO Connection check task end - -2025-09-26 00:10:40,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:42,121 INFO Connection check task start - -2025-09-26 00:10:42,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:42,122 INFO Out dated connection ,size=0 - -2025-09-26 00:10:42,122 INFO Connection check task end - -2025-09-26 00:10:43,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:45,122 INFO Connection check task start - -2025-09-26 00:10:45,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:45,122 INFO Out dated connection ,size=0 - -2025-09-26 00:10:45,122 INFO Connection check task end - -2025-09-26 00:10:46,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:48,123 INFO Connection check task start - -2025-09-26 00:10:48,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:48,123 INFO Out dated connection ,size=0 - -2025-09-26 00:10:48,123 INFO Connection check task end - -2025-09-26 00:10:49,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:51,124 INFO Connection check task start - -2025-09-26 00:10:51,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:51,124 INFO Out dated connection ,size=0 - -2025-09-26 00:10:51,124 INFO Connection check task end - -2025-09-26 00:10:52,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:54,125 INFO Connection check task start - -2025-09-26 00:10:54,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:54,126 INFO Out dated connection ,size=0 - -2025-09-26 00:10:54,126 INFO Connection check task end - -2025-09-26 00:10:55,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:10:57,127 INFO Connection check task start - -2025-09-26 00:10:57,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:10:57,127 INFO Out dated connection ,size=0 - -2025-09-26 00:10:57,127 INFO Connection check task end - -2025-09-26 00:10:58,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:00,128 INFO Connection check task start - -2025-09-26 00:11:00,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:00,128 INFO Out dated connection ,size=0 - -2025-09-26 00:11:00,128 INFO Connection check task end - -2025-09-26 00:11:01,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:03,128 INFO Connection check task start - -2025-09-26 00:11:03,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:03,129 INFO Out dated connection ,size=0 - -2025-09-26 00:11:03,129 INFO Connection check task end - -2025-09-26 00:11:04,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:06,129 INFO Connection check task start - -2025-09-26 00:11:06,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:06,130 INFO Out dated connection ,size=0 - -2025-09-26 00:11:06,130 INFO Connection check task end - -2025-09-26 00:11:07,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:09,130 INFO Connection check task start - -2025-09-26 00:11:09,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:09,131 INFO Out dated connection ,size=0 - -2025-09-26 00:11:09,131 INFO Connection check task end - -2025-09-26 00:11:10,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:12,131 INFO Connection check task start - -2025-09-26 00:11:12,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:12,131 INFO Out dated connection ,size=0 - -2025-09-26 00:11:12,131 INFO Connection check task end - -2025-09-26 00:11:13,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:15,132 INFO Connection check task start - -2025-09-26 00:11:15,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:15,132 INFO Out dated connection ,size=0 - -2025-09-26 00:11:15,132 INFO Connection check task end - -2025-09-26 00:11:16,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:18,132 INFO Connection check task start - -2025-09-26 00:11:18,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:18,133 INFO Out dated connection ,size=0 - -2025-09-26 00:11:18,133 INFO Connection check task end - -2025-09-26 00:11:19,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:21,133 INFO Connection check task start - -2025-09-26 00:11:21,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:21,133 INFO Out dated connection ,size=0 - -2025-09-26 00:11:21,133 INFO Connection check task end - -2025-09-26 00:11:22,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:24,134 INFO Connection check task start - -2025-09-26 00:11:24,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:24,134 INFO Out dated connection ,size=0 - -2025-09-26 00:11:24,134 INFO Connection check task end - -2025-09-26 00:11:25,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:27,135 INFO Connection check task start - -2025-09-26 00:11:27,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:27,135 INFO Out dated connection ,size=0 - -2025-09-26 00:11:27,135 INFO Connection check task end - -2025-09-26 00:11:28,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:30,135 INFO Connection check task start - -2025-09-26 00:11:30,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:30,135 INFO Out dated connection ,size=0 - -2025-09-26 00:11:30,135 INFO Connection check task end - -2025-09-26 00:11:31,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:33,136 INFO Connection check task start - -2025-09-26 00:11:33,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:33,136 INFO Out dated connection ,size=0 - -2025-09-26 00:11:33,136 INFO Connection check task end - -2025-09-26 00:11:34,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:36,137 INFO Connection check task start - -2025-09-26 00:11:36,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:36,137 INFO Out dated connection ,size=0 - -2025-09-26 00:11:36,137 INFO Connection check task end - -2025-09-26 00:11:37,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:39,138 INFO Connection check task start - -2025-09-26 00:11:39,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:39,138 INFO Out dated connection ,size=0 - -2025-09-26 00:11:39,138 INFO Connection check task end - -2025-09-26 00:11:40,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:42,139 INFO Connection check task start - -2025-09-26 00:11:42,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:42,139 INFO Out dated connection ,size=0 - -2025-09-26 00:11:42,139 INFO Connection check task end - -2025-09-26 00:11:43,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:45,140 INFO Connection check task start - -2025-09-26 00:11:45,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:45,140 INFO Out dated connection ,size=0 - -2025-09-26 00:11:45,140 INFO Connection check task end - -2025-09-26 00:11:46,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:48,141 INFO Connection check task start - -2025-09-26 00:11:48,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:48,141 INFO Out dated connection ,size=0 - -2025-09-26 00:11:48,141 INFO Connection check task end - -2025-09-26 00:11:49,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:51,141 INFO Connection check task start - -2025-09-26 00:11:51,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:51,141 INFO Out dated connection ,size=0 - -2025-09-26 00:11:51,141 INFO Connection check task end - -2025-09-26 00:11:52,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:54,142 INFO Connection check task start - -2025-09-26 00:11:54,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:54,142 INFO Out dated connection ,size=0 - -2025-09-26 00:11:54,142 INFO Connection check task end - -2025-09-26 00:11:55,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:11:57,142 INFO Connection check task start - -2025-09-26 00:11:57,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:11:57,142 INFO Out dated connection ,size=0 - -2025-09-26 00:11:57,142 INFO Connection check task end - -2025-09-26 00:11:58,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:00,143 INFO Connection check task start - -2025-09-26 00:12:00,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:00,143 INFO Out dated connection ,size=0 - -2025-09-26 00:12:00,143 INFO Connection check task end - -2025-09-26 00:12:01,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:03,143 INFO Connection check task start - -2025-09-26 00:12:03,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:03,144 INFO Out dated connection ,size=0 - -2025-09-26 00:12:03,144 INFO Connection check task end - -2025-09-26 00:12:04,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:06,144 INFO Connection check task start - -2025-09-26 00:12:06,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:06,144 INFO Out dated connection ,size=0 - -2025-09-26 00:12:06,144 INFO Connection check task end - -2025-09-26 00:12:07,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:09,145 INFO Connection check task start - -2025-09-26 00:12:09,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:09,145 INFO Out dated connection ,size=0 - -2025-09-26 00:12:09,145 INFO Connection check task end - -2025-09-26 00:12:10,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:12,145 INFO Connection check task start - -2025-09-26 00:12:12,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:12,148 INFO Out dated connection ,size=0 - -2025-09-26 00:12:12,148 INFO Connection check task end - -2025-09-26 00:12:13,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:15,149 INFO Connection check task start - -2025-09-26 00:12:15,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:15,149 INFO Out dated connection ,size=0 - -2025-09-26 00:12:15,149 INFO Connection check task end - -2025-09-26 00:12:16,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:18,150 INFO Connection check task start - -2025-09-26 00:12:18,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:18,150 INFO Out dated connection ,size=0 - -2025-09-26 00:12:18,150 INFO Connection check task end - -2025-09-26 00:12:19,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:21,151 INFO Connection check task start - -2025-09-26 00:12:21,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:21,151 INFO Out dated connection ,size=0 - -2025-09-26 00:12:21,151 INFO Connection check task end - -2025-09-26 00:12:22,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:24,152 INFO Connection check task start - -2025-09-26 00:12:24,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:24,152 INFO Out dated connection ,size=0 - -2025-09-26 00:12:24,152 INFO Connection check task end - -2025-09-26 00:12:25,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:27,152 INFO Connection check task start - -2025-09-26 00:12:27,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:27,152 INFO Out dated connection ,size=0 - -2025-09-26 00:12:27,152 INFO Connection check task end - -2025-09-26 00:12:28,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:30,153 INFO Connection check task start - -2025-09-26 00:12:30,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:30,154 INFO Out dated connection ,size=0 - -2025-09-26 00:12:30,154 INFO Connection check task end - -2025-09-26 00:12:31,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:33,154 INFO Connection check task start - -2025-09-26 00:12:33,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:33,154 INFO Out dated connection ,size=0 - -2025-09-26 00:12:33,154 INFO Connection check task end - -2025-09-26 00:12:34,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:36,155 INFO Connection check task start - -2025-09-26 00:12:36,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:36,155 INFO Out dated connection ,size=0 - -2025-09-26 00:12:36,155 INFO Connection check task end - -2025-09-26 00:12:37,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:39,155 INFO Connection check task start - -2025-09-26 00:12:39,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:39,155 INFO Out dated connection ,size=0 - -2025-09-26 00:12:39,155 INFO Connection check task end - -2025-09-26 00:12:40,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:42,155 INFO Connection check task start - -2025-09-26 00:12:42,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:42,155 INFO Out dated connection ,size=0 - -2025-09-26 00:12:42,156 INFO Connection check task end - -2025-09-26 00:12:43,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:45,156 INFO Connection check task start - -2025-09-26 00:12:45,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:45,156 INFO Out dated connection ,size=0 - -2025-09-26 00:12:45,156 INFO Connection check task end - -2025-09-26 00:12:46,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:48,156 INFO Connection check task start - -2025-09-26 00:12:48,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:48,157 INFO Out dated connection ,size=0 - -2025-09-26 00:12:48,157 INFO Connection check task end - -2025-09-26 00:12:49,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:51,157 INFO Connection check task start - -2025-09-26 00:12:51,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:51,157 INFO Out dated connection ,size=0 - -2025-09-26 00:12:51,157 INFO Connection check task end - -2025-09-26 00:12:52,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:54,158 INFO Connection check task start - -2025-09-26 00:12:54,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:54,158 INFO Out dated connection ,size=0 - -2025-09-26 00:12:54,158 INFO Connection check task end - -2025-09-26 00:12:55,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:12:57,158 INFO Connection check task start - -2025-09-26 00:12:57,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:12:57,159 INFO Out dated connection ,size=0 - -2025-09-26 00:12:57,159 INFO Connection check task end - -2025-09-26 00:12:58,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:00,159 INFO Connection check task start - -2025-09-26 00:13:00,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:00,160 INFO Out dated connection ,size=0 - -2025-09-26 00:13:00,160 INFO Connection check task end - -2025-09-26 00:13:01,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:03,161 INFO Connection check task start - -2025-09-26 00:13:03,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:03,161 INFO Out dated connection ,size=0 - -2025-09-26 00:13:03,161 INFO Connection check task end - -2025-09-26 00:13:04,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:06,162 INFO Connection check task start - -2025-09-26 00:13:06,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:06,163 INFO Out dated connection ,size=0 - -2025-09-26 00:13:06,163 INFO Connection check task end - -2025-09-26 00:13:07,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:09,164 INFO Connection check task start - -2025-09-26 00:13:09,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:09,164 INFO Out dated connection ,size=0 - -2025-09-26 00:13:09,164 INFO Connection check task end - -2025-09-26 00:13:10,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:12,164 INFO Connection check task start - -2025-09-26 00:13:12,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:12,165 INFO Out dated connection ,size=0 - -2025-09-26 00:13:12,165 INFO Connection check task end - -2025-09-26 00:13:13,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:15,166 INFO Connection check task start - -2025-09-26 00:13:15,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:15,166 INFO Out dated connection ,size=0 - -2025-09-26 00:13:15,166 INFO Connection check task end - -2025-09-26 00:13:16,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:18,166 INFO Connection check task start - -2025-09-26 00:13:18,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:18,166 INFO Out dated connection ,size=0 - -2025-09-26 00:13:18,166 INFO Connection check task end - -2025-09-26 00:13:19,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:21,166 INFO Connection check task start - -2025-09-26 00:13:21,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:21,167 INFO Out dated connection ,size=0 - -2025-09-26 00:13:21,167 INFO Connection check task end - -2025-09-26 00:13:22,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:24,167 INFO Connection check task start - -2025-09-26 00:13:24,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:24,167 INFO Out dated connection ,size=0 - -2025-09-26 00:13:24,168 INFO Connection check task end - -2025-09-26 00:13:25,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:27,168 INFO Connection check task start - -2025-09-26 00:13:27,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:27,168 INFO Out dated connection ,size=0 - -2025-09-26 00:13:27,168 INFO Connection check task end - -2025-09-26 00:13:28,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:30,169 INFO Connection check task start - -2025-09-26 00:13:30,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:30,169 INFO Out dated connection ,size=0 - -2025-09-26 00:13:30,169 INFO Connection check task end - -2025-09-26 00:13:31,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:33,170 INFO Connection check task start - -2025-09-26 00:13:33,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:33,170 INFO Out dated connection ,size=0 - -2025-09-26 00:13:33,170 INFO Connection check task end - -2025-09-26 00:13:34,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:36,171 INFO Connection check task start - -2025-09-26 00:13:36,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:36,171 INFO Out dated connection ,size=0 - -2025-09-26 00:13:36,171 INFO Connection check task end - -2025-09-26 00:13:37,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:39,172 INFO Connection check task start - -2025-09-26 00:13:39,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:39,172 INFO Out dated connection ,size=0 - -2025-09-26 00:13:39,172 INFO Connection check task end - -2025-09-26 00:13:40,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:42,172 INFO Connection check task start - -2025-09-26 00:13:42,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:42,172 INFO Out dated connection ,size=0 - -2025-09-26 00:13:42,172 INFO Connection check task end - -2025-09-26 00:13:43,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:45,174 INFO Connection check task start - -2025-09-26 00:13:45,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:45,174 INFO Out dated connection ,size=0 - -2025-09-26 00:13:45,174 INFO Connection check task end - -2025-09-26 00:13:46,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:48,175 INFO Connection check task start - -2025-09-26 00:13:48,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:48,175 INFO Out dated connection ,size=0 - -2025-09-26 00:13:48,175 INFO Connection check task end - -2025-09-26 00:13:49,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:51,176 INFO Connection check task start - -2025-09-26 00:13:51,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:51,176 INFO Out dated connection ,size=0 - -2025-09-26 00:13:51,176 INFO Connection check task end - -2025-09-26 00:13:52,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:54,177 INFO Connection check task start - -2025-09-26 00:13:54,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:54,177 INFO Out dated connection ,size=0 - -2025-09-26 00:13:54,177 INFO Connection check task end - -2025-09-26 00:13:55,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:13:57,178 INFO Connection check task start - -2025-09-26 00:13:57,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:13:57,178 INFO Out dated connection ,size=0 - -2025-09-26 00:13:57,178 INFO Connection check task end - -2025-09-26 00:13:58,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:00,178 INFO Connection check task start - -2025-09-26 00:14:00,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:00,178 INFO Out dated connection ,size=0 - -2025-09-26 00:14:00,178 INFO Connection check task end - -2025-09-26 00:14:01,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:03,179 INFO Connection check task start - -2025-09-26 00:14:03,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:03,180 INFO Out dated connection ,size=0 - -2025-09-26 00:14:03,180 INFO Connection check task end - -2025-09-26 00:14:04,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:06,180 INFO Connection check task start - -2025-09-26 00:14:06,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:06,180 INFO Out dated connection ,size=0 - -2025-09-26 00:14:06,180 INFO Connection check task end - -2025-09-26 00:14:07,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:09,181 INFO Connection check task start - -2025-09-26 00:14:09,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:09,182 INFO Out dated connection ,size=0 - -2025-09-26 00:14:09,182 INFO Connection check task end - -2025-09-26 00:14:10,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:12,182 INFO Connection check task start - -2025-09-26 00:14:12,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:12,183 INFO Out dated connection ,size=0 - -2025-09-26 00:14:12,183 INFO Connection check task end - -2025-09-26 00:14:13,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:15,183 INFO Connection check task start - -2025-09-26 00:14:15,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:15,184 INFO Out dated connection ,size=0 - -2025-09-26 00:14:15,184 INFO Connection check task end - -2025-09-26 00:14:16,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:18,184 INFO Connection check task start - -2025-09-26 00:14:18,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:18,184 INFO Out dated connection ,size=0 - -2025-09-26 00:14:18,185 INFO Connection check task end - -2025-09-26 00:14:19,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:21,185 INFO Connection check task start - -2025-09-26 00:14:21,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:21,186 INFO Out dated connection ,size=0 - -2025-09-26 00:14:21,186 INFO Connection check task end - -2025-09-26 00:14:22,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:24,186 INFO Connection check task start - -2025-09-26 00:14:24,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:24,186 INFO Out dated connection ,size=0 - -2025-09-26 00:14:24,186 INFO Connection check task end - -2025-09-26 00:14:25,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:27,187 INFO Connection check task start - -2025-09-26 00:14:27,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:27,187 INFO Out dated connection ,size=0 - -2025-09-26 00:14:27,187 INFO Connection check task end - -2025-09-26 00:14:28,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:30,188 INFO Connection check task start - -2025-09-26 00:14:30,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:30,188 INFO Out dated connection ,size=0 - -2025-09-26 00:14:30,188 INFO Connection check task end - -2025-09-26 00:14:31,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:33,189 INFO Connection check task start - -2025-09-26 00:14:33,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:33,190 INFO Out dated connection ,size=0 - -2025-09-26 00:14:33,190 INFO Connection check task end - -2025-09-26 00:14:34,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:36,190 INFO Connection check task start - -2025-09-26 00:14:36,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:36,190 INFO Out dated connection ,size=0 - -2025-09-26 00:14:36,190 INFO Connection check task end - -2025-09-26 00:14:37,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:39,191 INFO Connection check task start - -2025-09-26 00:14:39,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:39,191 INFO Out dated connection ,size=0 - -2025-09-26 00:14:39,191 INFO Connection check task end - -2025-09-26 00:14:40,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:42,191 INFO Connection check task start - -2025-09-26 00:14:42,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:42,191 INFO Out dated connection ,size=0 - -2025-09-26 00:14:42,192 INFO Connection check task end - -2025-09-26 00:14:43,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:45,192 INFO Connection check task start - -2025-09-26 00:14:45,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:45,192 INFO Out dated connection ,size=0 - -2025-09-26 00:14:45,192 INFO Connection check task end - -2025-09-26 00:14:46,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:48,193 INFO Connection check task start - -2025-09-26 00:14:48,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:48,193 INFO Out dated connection ,size=0 - -2025-09-26 00:14:48,193 INFO Connection check task end - -2025-09-26 00:14:49,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:51,194 INFO Connection check task start - -2025-09-26 00:14:51,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:51,194 INFO Out dated connection ,size=0 - -2025-09-26 00:14:51,194 INFO Connection check task end - -2025-09-26 00:14:52,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:54,194 INFO Connection check task start - -2025-09-26 00:14:54,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:54,194 INFO Out dated connection ,size=0 - -2025-09-26 00:14:54,194 INFO Connection check task end - -2025-09-26 00:14:55,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:14:57,194 INFO Connection check task start - -2025-09-26 00:14:57,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:14:57,194 INFO Out dated connection ,size=0 - -2025-09-26 00:14:57,194 INFO Connection check task end - -2025-09-26 00:14:58,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:00,195 INFO Connection check task start - -2025-09-26 00:15:00,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:00,208 INFO Out dated connection ,size=0 - -2025-09-26 00:15:00,208 INFO Connection check task end - -2025-09-26 00:15:01,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:03,208 INFO Connection check task start - -2025-09-26 00:15:03,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:03,208 INFO Out dated connection ,size=0 - -2025-09-26 00:15:03,208 INFO Connection check task end - -2025-09-26 00:15:04,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:06,208 INFO Connection check task start - -2025-09-26 00:15:06,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:06,208 INFO Out dated connection ,size=0 - -2025-09-26 00:15:06,208 INFO Connection check task end - -2025-09-26 00:15:07,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:09,209 INFO Connection check task start - -2025-09-26 00:15:09,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:09,209 INFO Out dated connection ,size=0 - -2025-09-26 00:15:09,209 INFO Connection check task end - -2025-09-26 00:15:10,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:12,210 INFO Connection check task start - -2025-09-26 00:15:12,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:12,210 INFO Out dated connection ,size=0 - -2025-09-26 00:15:12,210 INFO Connection check task end - -2025-09-26 00:15:13,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:15,210 INFO Connection check task start - -2025-09-26 00:15:15,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:15,210 INFO Out dated connection ,size=0 - -2025-09-26 00:15:15,210 INFO Connection check task end - -2025-09-26 00:15:16,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:18,211 INFO Connection check task start - -2025-09-26 00:15:18,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:18,212 INFO Out dated connection ,size=0 - -2025-09-26 00:15:18,212 INFO Connection check task end - -2025-09-26 00:15:19,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:21,213 INFO Connection check task start - -2025-09-26 00:15:21,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:21,213 INFO Out dated connection ,size=0 - -2025-09-26 00:15:21,213 INFO Connection check task end - -2025-09-26 00:15:22,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:24,214 INFO Connection check task start - -2025-09-26 00:15:24,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:24,214 INFO Out dated connection ,size=0 - -2025-09-26 00:15:24,214 INFO Connection check task end - -2025-09-26 00:15:25,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:27,215 INFO Connection check task start - -2025-09-26 00:15:27,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:27,215 INFO Out dated connection ,size=0 - -2025-09-26 00:15:27,215 INFO Connection check task end - -2025-09-26 00:15:28,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:30,216 INFO Connection check task start - -2025-09-26 00:15:30,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:30,216 INFO Out dated connection ,size=0 - -2025-09-26 00:15:30,216 INFO Connection check task end - -2025-09-26 00:15:31,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:33,217 INFO Connection check task start - -2025-09-26 00:15:33,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:33,217 INFO Out dated connection ,size=0 - -2025-09-26 00:15:33,217 INFO Connection check task end - -2025-09-26 00:15:34,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:36,217 INFO Connection check task start - -2025-09-26 00:15:36,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:36,218 INFO Out dated connection ,size=0 - -2025-09-26 00:15:36,218 INFO Connection check task end - -2025-09-26 00:15:37,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:39,218 INFO Connection check task start - -2025-09-26 00:15:39,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:39,218 INFO Out dated connection ,size=0 - -2025-09-26 00:15:39,218 INFO Connection check task end - -2025-09-26 00:15:40,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:42,218 INFO Connection check task start - -2025-09-26 00:15:42,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:42,218 INFO Out dated connection ,size=0 - -2025-09-26 00:15:42,219 INFO Connection check task end - -2025-09-26 00:15:43,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:45,220 INFO Connection check task start - -2025-09-26 00:15:45,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:45,220 INFO Out dated connection ,size=0 - -2025-09-26 00:15:45,220 INFO Connection check task end - -2025-09-26 00:15:46,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:48,221 INFO Connection check task start - -2025-09-26 00:15:48,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:48,221 INFO Out dated connection ,size=0 - -2025-09-26 00:15:48,221 INFO Connection check task end - -2025-09-26 00:15:49,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:51,222 INFO Connection check task start - -2025-09-26 00:15:51,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:51,222 INFO Out dated connection ,size=0 - -2025-09-26 00:15:51,222 INFO Connection check task end - -2025-09-26 00:15:52,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:54,222 INFO Connection check task start - -2025-09-26 00:15:54,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:54,223 INFO Out dated connection ,size=0 - -2025-09-26 00:15:54,223 INFO Connection check task end - -2025-09-26 00:15:55,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:15:57,223 INFO Connection check task start - -2025-09-26 00:15:57,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:15:57,224 INFO Out dated connection ,size=0 - -2025-09-26 00:15:57,224 INFO Connection check task end - -2025-09-26 00:15:58,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:00,224 INFO Connection check task start - -2025-09-26 00:16:00,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:00,224 INFO Out dated connection ,size=0 - -2025-09-26 00:16:00,224 INFO Connection check task end - -2025-09-26 00:16:01,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:03,224 INFO Connection check task start - -2025-09-26 00:16:03,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:03,225 INFO Out dated connection ,size=0 - -2025-09-26 00:16:03,225 INFO Connection check task end - -2025-09-26 00:16:04,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:06,226 INFO Connection check task start - -2025-09-26 00:16:06,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:06,227 INFO Out dated connection ,size=0 - -2025-09-26 00:16:06,227 INFO Connection check task end - -2025-09-26 00:16:07,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:09,227 INFO Connection check task start - -2025-09-26 00:16:09,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:09,227 INFO Out dated connection ,size=0 - -2025-09-26 00:16:09,227 INFO Connection check task end - -2025-09-26 00:16:10,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:12,228 INFO Connection check task start - -2025-09-26 00:16:12,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:12,228 INFO Out dated connection ,size=0 - -2025-09-26 00:16:12,228 INFO Connection check task end - -2025-09-26 00:16:13,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:15,229 INFO Connection check task start - -2025-09-26 00:16:15,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:15,229 INFO Out dated connection ,size=0 - -2025-09-26 00:16:15,229 INFO Connection check task end - -2025-09-26 00:16:16,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:18,229 INFO Connection check task start - -2025-09-26 00:16:18,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:18,229 INFO Out dated connection ,size=0 - -2025-09-26 00:16:18,229 INFO Connection check task end - -2025-09-26 00:16:19,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:21,230 INFO Connection check task start - -2025-09-26 00:16:21,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:21,230 INFO Out dated connection ,size=0 - -2025-09-26 00:16:21,230 INFO Connection check task end - -2025-09-26 00:16:22,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:24,230 INFO Connection check task start - -2025-09-26 00:16:24,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:24,230 INFO Out dated connection ,size=0 - -2025-09-26 00:16:24,230 INFO Connection check task end - -2025-09-26 00:16:25,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:27,231 INFO Connection check task start - -2025-09-26 00:16:27,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:27,231 INFO Out dated connection ,size=0 - -2025-09-26 00:16:27,231 INFO Connection check task end - -2025-09-26 00:16:28,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:30,232 INFO Connection check task start - -2025-09-26 00:16:30,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:30,232 INFO Out dated connection ,size=0 - -2025-09-26 00:16:30,232 INFO Connection check task end - -2025-09-26 00:16:31,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:33,233 INFO Connection check task start - -2025-09-26 00:16:33,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:33,233 INFO Out dated connection ,size=0 - -2025-09-26 00:16:33,233 INFO Connection check task end - -2025-09-26 00:16:34,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:36,234 INFO Connection check task start - -2025-09-26 00:16:36,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:36,234 INFO Out dated connection ,size=0 - -2025-09-26 00:16:36,234 INFO Connection check task end - -2025-09-26 00:16:37,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:39,234 INFO Connection check task start - -2025-09-26 00:16:39,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:39,235 INFO Out dated connection ,size=0 - -2025-09-26 00:16:39,235 INFO Connection check task end - -2025-09-26 00:16:40,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:42,235 INFO Connection check task start - -2025-09-26 00:16:42,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:42,235 INFO Out dated connection ,size=0 - -2025-09-26 00:16:42,235 INFO Connection check task end - -2025-09-26 00:16:43,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:45,235 INFO Connection check task start - -2025-09-26 00:16:45,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:45,236 INFO Out dated connection ,size=0 - -2025-09-26 00:16:45,236 INFO Connection check task end - -2025-09-26 00:16:46,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:48,236 INFO Connection check task start - -2025-09-26 00:16:48,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:48,236 INFO Out dated connection ,size=0 - -2025-09-26 00:16:48,236 INFO Connection check task end - -2025-09-26 00:16:49,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:51,236 INFO Connection check task start - -2025-09-26 00:16:51,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:51,237 INFO Out dated connection ,size=0 - -2025-09-26 00:16:51,237 INFO Connection check task end - -2025-09-26 00:16:52,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:54,237 INFO Connection check task start - -2025-09-26 00:16:54,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:54,237 INFO Out dated connection ,size=0 - -2025-09-26 00:16:54,237 INFO Connection check task end - -2025-09-26 00:16:55,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:16:57,238 INFO Connection check task start - -2025-09-26 00:16:57,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:16:57,238 INFO Out dated connection ,size=0 - -2025-09-26 00:16:57,238 INFO Connection check task end - -2025-09-26 00:16:58,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:00,238 INFO Connection check task start - -2025-09-26 00:17:00,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:00,238 INFO Out dated connection ,size=0 - -2025-09-26 00:17:00,238 INFO Connection check task end - -2025-09-26 00:17:01,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:03,239 INFO Connection check task start - -2025-09-26 00:17:03,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:03,240 INFO Out dated connection ,size=0 - -2025-09-26 00:17:03,240 INFO Connection check task end - -2025-09-26 00:17:04,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:06,241 INFO Connection check task start - -2025-09-26 00:17:06,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:06,241 INFO Out dated connection ,size=0 - -2025-09-26 00:17:06,241 INFO Connection check task end - -2025-09-26 00:17:07,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:09,242 INFO Connection check task start - -2025-09-26 00:17:09,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:09,242 INFO Out dated connection ,size=0 - -2025-09-26 00:17:09,242 INFO Connection check task end - -2025-09-26 00:17:10,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:12,242 INFO Connection check task start - -2025-09-26 00:17:12,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:12,243 INFO Out dated connection ,size=0 - -2025-09-26 00:17:12,243 INFO Connection check task end - -2025-09-26 00:17:13,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:15,243 INFO Connection check task start - -2025-09-26 00:17:15,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:15,243 INFO Out dated connection ,size=0 - -2025-09-26 00:17:15,243 INFO Connection check task end - -2025-09-26 00:17:16,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:18,243 INFO Connection check task start - -2025-09-26 00:17:18,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:18,244 INFO Out dated connection ,size=0 - -2025-09-26 00:17:18,244 INFO Connection check task end - -2025-09-26 00:17:19,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:21,244 INFO Connection check task start - -2025-09-26 00:17:21,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:21,244 INFO Out dated connection ,size=0 - -2025-09-26 00:17:21,244 INFO Connection check task end - -2025-09-26 00:17:22,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:24,244 INFO Connection check task start - -2025-09-26 00:17:24,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:24,245 INFO Out dated connection ,size=0 - -2025-09-26 00:17:24,245 INFO Connection check task end - -2025-09-26 00:17:25,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:27,245 INFO Connection check task start - -2025-09-26 00:17:27,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:27,246 INFO Out dated connection ,size=0 - -2025-09-26 00:17:27,246 INFO Connection check task end - -2025-09-26 00:17:28,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:30,247 INFO Connection check task start - -2025-09-26 00:17:30,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:30,247 INFO Out dated connection ,size=0 - -2025-09-26 00:17:30,247 INFO Connection check task end - -2025-09-26 00:17:31,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:33,248 INFO Connection check task start - -2025-09-26 00:17:33,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:33,248 INFO Out dated connection ,size=0 - -2025-09-26 00:17:33,248 INFO Connection check task end - -2025-09-26 00:17:34,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:36,249 INFO Connection check task start - -2025-09-26 00:17:36,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:36,249 INFO Out dated connection ,size=0 - -2025-09-26 00:17:36,249 INFO Connection check task end - -2025-09-26 00:17:37,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:39,250 INFO Connection check task start - -2025-09-26 00:17:39,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:39,250 INFO Out dated connection ,size=0 - -2025-09-26 00:17:39,250 INFO Connection check task end - -2025-09-26 00:17:40,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:42,251 INFO Connection check task start - -2025-09-26 00:17:42,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:42,251 INFO Out dated connection ,size=0 - -2025-09-26 00:17:42,251 INFO Connection check task end - -2025-09-26 00:17:43,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:45,251 INFO Connection check task start - -2025-09-26 00:17:45,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:45,252 INFO Out dated connection ,size=0 - -2025-09-26 00:17:45,252 INFO Connection check task end - -2025-09-26 00:17:46,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:48,253 INFO Connection check task start - -2025-09-26 00:17:48,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:48,253 INFO Out dated connection ,size=0 - -2025-09-26 00:17:48,253 INFO Connection check task end - -2025-09-26 00:17:49,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:51,254 INFO Connection check task start - -2025-09-26 00:17:51,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:51,254 INFO Out dated connection ,size=0 - -2025-09-26 00:17:51,254 INFO Connection check task end - -2025-09-26 00:17:52,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:54,255 INFO Connection check task start - -2025-09-26 00:17:54,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:54,255 INFO Out dated connection ,size=0 - -2025-09-26 00:17:54,255 INFO Connection check task end - -2025-09-26 00:17:55,903 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:17:57,255 INFO Connection check task start - -2025-09-26 00:17:57,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:17:57,255 INFO Out dated connection ,size=0 - -2025-09-26 00:17:57,255 INFO Connection check task end - -2025-09-26 00:17:58,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:00,256 INFO Connection check task start - -2025-09-26 00:18:00,256 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:00,256 INFO Out dated connection ,size=0 - -2025-09-26 00:18:00,257 INFO Connection check task end - -2025-09-26 00:18:01,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:03,257 INFO Connection check task start - -2025-09-26 00:18:03,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:03,257 INFO Out dated connection ,size=0 - -2025-09-26 00:18:03,257 INFO Connection check task end - -2025-09-26 00:18:04,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:06,257 INFO Connection check task start - -2025-09-26 00:18:06,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:06,257 INFO Out dated connection ,size=0 - -2025-09-26 00:18:06,257 INFO Connection check task end - -2025-09-26 00:18:07,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:09,258 INFO Connection check task start - -2025-09-26 00:18:09,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:09,258 INFO Out dated connection ,size=0 - -2025-09-26 00:18:09,258 INFO Connection check task end - -2025-09-26 00:18:10,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:12,258 INFO Connection check task start - -2025-09-26 00:18:12,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:12,258 INFO Out dated connection ,size=0 - -2025-09-26 00:18:12,258 INFO Connection check task end - -2025-09-26 00:18:13,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:15,259 INFO Connection check task start - -2025-09-26 00:18:15,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:15,259 INFO Out dated connection ,size=0 - -2025-09-26 00:18:15,259 INFO Connection check task end - -2025-09-26 00:18:16,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:18,260 INFO Connection check task start - -2025-09-26 00:18:18,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:18,260 INFO Out dated connection ,size=0 - -2025-09-26 00:18:18,261 INFO Connection check task end - -2025-09-26 00:18:19,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:21,261 INFO Connection check task start - -2025-09-26 00:18:21,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:21,261 INFO Out dated connection ,size=0 - -2025-09-26 00:18:21,261 INFO Connection check task end - -2025-09-26 00:18:22,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:24,262 INFO Connection check task start - -2025-09-26 00:18:24,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:24,263 INFO Out dated connection ,size=0 - -2025-09-26 00:18:24,263 INFO Connection check task end - -2025-09-26 00:18:25,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:27,263 INFO Connection check task start - -2025-09-26 00:18:27,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:27,263 INFO Out dated connection ,size=0 - -2025-09-26 00:18:27,263 INFO Connection check task end - -2025-09-26 00:18:28,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:30,263 INFO Connection check task start - -2025-09-26 00:18:30,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:30,264 INFO Out dated connection ,size=0 - -2025-09-26 00:18:30,264 INFO Connection check task end - -2025-09-26 00:18:31,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:33,264 INFO Connection check task start - -2025-09-26 00:18:33,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:33,264 INFO Out dated connection ,size=0 - -2025-09-26 00:18:33,264 INFO Connection check task end - -2025-09-26 00:18:34,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:36,265 INFO Connection check task start - -2025-09-26 00:18:36,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:36,265 INFO Out dated connection ,size=0 - -2025-09-26 00:18:36,265 INFO Connection check task end - -2025-09-26 00:18:37,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:39,266 INFO Connection check task start - -2025-09-26 00:18:39,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:39,266 INFO Out dated connection ,size=0 - -2025-09-26 00:18:39,266 INFO Connection check task end - -2025-09-26 00:18:40,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:42,266 INFO Connection check task start - -2025-09-26 00:18:42,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:42,267 INFO Out dated connection ,size=0 - -2025-09-26 00:18:42,267 INFO Connection check task end - -2025-09-26 00:18:43,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:45,267 INFO Connection check task start - -2025-09-26 00:18:45,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:45,267 INFO Out dated connection ,size=0 - -2025-09-26 00:18:45,268 INFO Connection check task end - -2025-09-26 00:18:46,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:48,268 INFO Connection check task start - -2025-09-26 00:18:48,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:48,268 INFO Out dated connection ,size=0 - -2025-09-26 00:18:48,268 INFO Connection check task end - -2025-09-26 00:18:49,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:51,269 INFO Connection check task start - -2025-09-26 00:18:51,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:51,270 INFO Out dated connection ,size=0 - -2025-09-26 00:18:51,270 INFO Connection check task end - -2025-09-26 00:18:52,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:54,271 INFO Connection check task start - -2025-09-26 00:18:54,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:54,271 INFO Out dated connection ,size=0 - -2025-09-26 00:18:54,271 INFO Connection check task end - -2025-09-26 00:18:55,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:18:57,272 INFO Connection check task start - -2025-09-26 00:18:57,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:18:57,272 INFO Out dated connection ,size=0 - -2025-09-26 00:18:57,272 INFO Connection check task end - -2025-09-26 00:18:58,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:00,272 INFO Connection check task start - -2025-09-26 00:19:00,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:00,273 INFO Out dated connection ,size=0 - -2025-09-26 00:19:00,273 INFO Connection check task end - -2025-09-26 00:19:01,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:03,274 INFO Connection check task start - -2025-09-26 00:19:03,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:03,274 INFO Out dated connection ,size=0 - -2025-09-26 00:19:03,274 INFO Connection check task end - -2025-09-26 00:19:04,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:06,275 INFO Connection check task start - -2025-09-26 00:19:06,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:06,275 INFO Out dated connection ,size=0 - -2025-09-26 00:19:06,275 INFO Connection check task end - -2025-09-26 00:19:07,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:09,276 INFO Connection check task start - -2025-09-26 00:19:09,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:09,276 INFO Out dated connection ,size=0 - -2025-09-26 00:19:09,276 INFO Connection check task end - -2025-09-26 00:19:10,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:12,276 INFO Connection check task start - -2025-09-26 00:19:12,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:12,276 INFO Out dated connection ,size=0 - -2025-09-26 00:19:12,277 INFO Connection check task end - -2025-09-26 00:19:13,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:15,277 INFO Connection check task start - -2025-09-26 00:19:15,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:15,277 INFO Out dated connection ,size=0 - -2025-09-26 00:19:15,277 INFO Connection check task end - -2025-09-26 00:19:16,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:18,278 INFO Connection check task start - -2025-09-26 00:19:18,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:18,278 INFO Out dated connection ,size=0 - -2025-09-26 00:19:18,278 INFO Connection check task end - -2025-09-26 00:19:19,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:21,278 INFO Connection check task start - -2025-09-26 00:19:21,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:21,279 INFO Out dated connection ,size=0 - -2025-09-26 00:19:21,279 INFO Connection check task end - -2025-09-26 00:19:22,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:24,279 INFO Connection check task start - -2025-09-26 00:19:24,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:24,279 INFO Out dated connection ,size=0 - -2025-09-26 00:19:24,279 INFO Connection check task end - -2025-09-26 00:19:25,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:27,279 INFO Connection check task start - -2025-09-26 00:19:27,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:27,280 INFO Out dated connection ,size=0 - -2025-09-26 00:19:27,280 INFO Connection check task end - -2025-09-26 00:19:28,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:30,280 INFO Connection check task start - -2025-09-26 00:19:30,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:30,280 INFO Out dated connection ,size=0 - -2025-09-26 00:19:30,280 INFO Connection check task end - -2025-09-26 00:19:31,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:33,281 INFO Connection check task start - -2025-09-26 00:19:33,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:33,281 INFO Out dated connection ,size=0 - -2025-09-26 00:19:33,281 INFO Connection check task end - -2025-09-26 00:19:34,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:36,282 INFO Connection check task start - -2025-09-26 00:19:36,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:36,283 INFO Out dated connection ,size=0 - -2025-09-26 00:19:36,283 INFO Connection check task end - -2025-09-26 00:19:37,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:39,284 INFO Connection check task start - -2025-09-26 00:19:39,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:39,284 INFO Out dated connection ,size=0 - -2025-09-26 00:19:39,284 INFO Connection check task end - -2025-09-26 00:19:40,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:42,284 INFO Connection check task start - -2025-09-26 00:19:42,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:42,285 INFO Out dated connection ,size=0 - -2025-09-26 00:19:42,285 INFO Connection check task end - -2025-09-26 00:19:43,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:45,285 INFO Connection check task start - -2025-09-26 00:19:45,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:45,285 INFO Out dated connection ,size=0 - -2025-09-26 00:19:45,285 INFO Connection check task end - -2025-09-26 00:19:46,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:48,286 INFO Connection check task start - -2025-09-26 00:19:48,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:48,287 INFO Out dated connection ,size=0 - -2025-09-26 00:19:48,287 INFO Connection check task end - -2025-09-26 00:19:49,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:51,288 INFO Connection check task start - -2025-09-26 00:19:51,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:51,288 INFO Out dated connection ,size=0 - -2025-09-26 00:19:51,288 INFO Connection check task end - -2025-09-26 00:19:52,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:54,289 INFO Connection check task start - -2025-09-26 00:19:54,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:54,290 INFO Out dated connection ,size=0 - -2025-09-26 00:19:54,290 INFO Connection check task end - -2025-09-26 00:19:55,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:19:57,291 INFO Connection check task start - -2025-09-26 00:19:57,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:19:57,291 INFO Out dated connection ,size=0 - -2025-09-26 00:19:57,291 INFO Connection check task end - -2025-09-26 00:19:58,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:00,292 INFO Connection check task start - -2025-09-26 00:20:00,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:00,293 INFO Out dated connection ,size=0 - -2025-09-26 00:20:00,293 INFO Connection check task end - -2025-09-26 00:20:01,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:03,293 INFO Connection check task start - -2025-09-26 00:20:03,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:03,293 INFO Out dated connection ,size=0 - -2025-09-26 00:20:03,293 INFO Connection check task end - -2025-09-26 00:20:04,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:06,295 INFO Connection check task start - -2025-09-26 00:20:06,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:06,295 INFO Out dated connection ,size=0 - -2025-09-26 00:20:06,295 INFO Connection check task end - -2025-09-26 00:20:07,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:09,296 INFO Connection check task start - -2025-09-26 00:20:09,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:09,296 INFO Out dated connection ,size=0 - -2025-09-26 00:20:09,296 INFO Connection check task end - -2025-09-26 00:20:10,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:12,296 INFO Connection check task start - -2025-09-26 00:20:12,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:12,296 INFO Out dated connection ,size=0 - -2025-09-26 00:20:12,296 INFO Connection check task end - -2025-09-26 00:20:13,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:15,297 INFO Connection check task start - -2025-09-26 00:20:15,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:15,297 INFO Out dated connection ,size=0 - -2025-09-26 00:20:15,297 INFO Connection check task end - -2025-09-26 00:20:16,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:18,298 INFO Connection check task start - -2025-09-26 00:20:18,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:18,298 INFO Out dated connection ,size=0 - -2025-09-26 00:20:18,298 INFO Connection check task end - -2025-09-26 00:20:19,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:21,300 INFO Connection check task start - -2025-09-26 00:20:21,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:21,300 INFO Out dated connection ,size=0 - -2025-09-26 00:20:21,300 INFO Connection check task end - -2025-09-26 00:20:22,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:24,300 INFO Connection check task start - -2025-09-26 00:20:24,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:24,300 INFO Out dated connection ,size=0 - -2025-09-26 00:20:24,300 INFO Connection check task end - -2025-09-26 00:20:25,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:27,301 INFO Connection check task start - -2025-09-26 00:20:27,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:27,301 INFO Out dated connection ,size=0 - -2025-09-26 00:20:27,302 INFO Connection check task end - -2025-09-26 00:20:28,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:30,302 INFO Connection check task start - -2025-09-26 00:20:30,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:30,302 INFO Out dated connection ,size=0 - -2025-09-26 00:20:30,302 INFO Connection check task end - -2025-09-26 00:20:31,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:33,302 INFO Connection check task start - -2025-09-26 00:20:33,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:33,303 INFO Out dated connection ,size=0 - -2025-09-26 00:20:33,303 INFO Connection check task end - -2025-09-26 00:20:34,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:36,303 INFO Connection check task start - -2025-09-26 00:20:36,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:36,303 INFO Out dated connection ,size=0 - -2025-09-26 00:20:36,303 INFO Connection check task end - -2025-09-26 00:20:37,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:39,303 INFO Connection check task start - -2025-09-26 00:20:39,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:39,303 INFO Out dated connection ,size=0 - -2025-09-26 00:20:39,303 INFO Connection check task end - -2025-09-26 00:20:40,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:42,304 INFO Connection check task start - -2025-09-26 00:20:42,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:42,304 INFO Out dated connection ,size=0 - -2025-09-26 00:20:42,304 INFO Connection check task end - -2025-09-26 00:20:43,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:45,304 INFO Connection check task start - -2025-09-26 00:20:45,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:45,305 INFO Out dated connection ,size=0 - -2025-09-26 00:20:45,305 INFO Connection check task end - -2025-09-26 00:20:46,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:48,305 INFO Connection check task start - -2025-09-26 00:20:48,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:48,305 INFO Out dated connection ,size=0 - -2025-09-26 00:20:48,305 INFO Connection check task end - -2025-09-26 00:20:49,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:51,305 INFO Connection check task start - -2025-09-26 00:20:51,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:51,306 INFO Out dated connection ,size=0 - -2025-09-26 00:20:51,306 INFO Connection check task end - -2025-09-26 00:20:52,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:54,306 INFO Connection check task start - -2025-09-26 00:20:54,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:54,306 INFO Out dated connection ,size=0 - -2025-09-26 00:20:54,306 INFO Connection check task end - -2025-09-26 00:20:55,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:20:57,307 INFO Connection check task start - -2025-09-26 00:20:57,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:20:57,307 INFO Out dated connection ,size=0 - -2025-09-26 00:20:57,307 INFO Connection check task end - -2025-09-26 00:20:58,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:00,308 INFO Connection check task start - -2025-09-26 00:21:00,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:00,308 INFO Out dated connection ,size=0 - -2025-09-26 00:21:00,308 INFO Connection check task end - -2025-09-26 00:21:01,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:03,309 INFO Connection check task start - -2025-09-26 00:21:03,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:03,309 INFO Out dated connection ,size=0 - -2025-09-26 00:21:03,309 INFO Connection check task end - -2025-09-26 00:21:04,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:06,310 INFO Connection check task start - -2025-09-26 00:21:06,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:06,311 INFO Out dated connection ,size=0 - -2025-09-26 00:21:06,311 INFO Connection check task end - -2025-09-26 00:21:07,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:09,311 INFO Connection check task start - -2025-09-26 00:21:09,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:09,311 INFO Out dated connection ,size=0 - -2025-09-26 00:21:09,311 INFO Connection check task end - -2025-09-26 00:21:10,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:12,312 INFO Connection check task start - -2025-09-26 00:21:12,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:12,313 INFO Out dated connection ,size=0 - -2025-09-26 00:21:12,313 INFO Connection check task end - -2025-09-26 00:21:13,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:15,314 INFO Connection check task start - -2025-09-26 00:21:15,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:15,314 INFO Out dated connection ,size=0 - -2025-09-26 00:21:15,314 INFO Connection check task end - -2025-09-26 00:21:16,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:18,314 INFO Connection check task start - -2025-09-26 00:21:18,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:18,316 INFO Out dated connection ,size=0 - -2025-09-26 00:21:18,316 INFO Connection check task end - -2025-09-26 00:21:19,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:21,316 INFO Connection check task start - -2025-09-26 00:21:21,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:21,316 INFO Out dated connection ,size=0 - -2025-09-26 00:21:21,316 INFO Connection check task end - -2025-09-26 00:21:22,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:24,317 INFO Connection check task start - -2025-09-26 00:21:24,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:24,318 INFO Out dated connection ,size=0 - -2025-09-26 00:21:24,318 INFO Connection check task end - -2025-09-26 00:21:25,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:27,319 INFO Connection check task start - -2025-09-26 00:21:27,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:27,319 INFO Out dated connection ,size=0 - -2025-09-26 00:21:27,319 INFO Connection check task end - -2025-09-26 00:21:28,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:30,320 INFO Connection check task start - -2025-09-26 00:21:30,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:30,320 INFO Out dated connection ,size=0 - -2025-09-26 00:21:30,320 INFO Connection check task end - -2025-09-26 00:21:31,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:33,320 INFO Connection check task start - -2025-09-26 00:21:33,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:33,320 INFO Out dated connection ,size=0 - -2025-09-26 00:21:33,320 INFO Connection check task end - -2025-09-26 00:21:34,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:36,321 INFO Connection check task start - -2025-09-26 00:21:36,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:36,321 INFO Out dated connection ,size=0 - -2025-09-26 00:21:36,321 INFO Connection check task end - -2025-09-26 00:21:37,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:39,321 INFO Connection check task start - -2025-09-26 00:21:39,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:39,322 INFO Out dated connection ,size=0 - -2025-09-26 00:21:39,322 INFO Connection check task end - -2025-09-26 00:21:40,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:42,322 INFO Connection check task start - -2025-09-26 00:21:42,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:42,323 INFO Out dated connection ,size=0 - -2025-09-26 00:21:42,323 INFO Connection check task end - -2025-09-26 00:21:43,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:45,323 INFO Connection check task start - -2025-09-26 00:21:45,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:45,323 INFO Out dated connection ,size=0 - -2025-09-26 00:21:45,323 INFO Connection check task end - -2025-09-26 00:21:46,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:48,323 INFO Connection check task start - -2025-09-26 00:21:48,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:48,324 INFO Out dated connection ,size=0 - -2025-09-26 00:21:48,324 INFO Connection check task end - -2025-09-26 00:21:49,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:51,324 INFO Connection check task start - -2025-09-26 00:21:51,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:51,325 INFO Out dated connection ,size=0 - -2025-09-26 00:21:51,325 INFO Connection check task end - -2025-09-26 00:21:52,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:54,325 INFO Connection check task start - -2025-09-26 00:21:54,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:54,325 INFO Out dated connection ,size=0 - -2025-09-26 00:21:54,325 INFO Connection check task end - -2025-09-26 00:21:55,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:21:57,326 INFO Connection check task start - -2025-09-26 00:21:57,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:21:57,326 INFO Out dated connection ,size=0 - -2025-09-26 00:21:57,326 INFO Connection check task end - -2025-09-26 00:21:58,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:00,326 INFO Connection check task start - -2025-09-26 00:22:00,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:00,326 INFO Out dated connection ,size=0 - -2025-09-26 00:22:00,326 INFO Connection check task end - -2025-09-26 00:22:01,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:03,327 INFO Connection check task start - -2025-09-26 00:22:03,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:03,327 INFO Out dated connection ,size=0 - -2025-09-26 00:22:03,327 INFO Connection check task end - -2025-09-26 00:22:04,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:06,327 INFO Connection check task start - -2025-09-26 00:22:06,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:06,327 INFO Out dated connection ,size=0 - -2025-09-26 00:22:06,327 INFO Connection check task end - -2025-09-26 00:22:07,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:09,328 INFO Connection check task start - -2025-09-26 00:22:09,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:09,328 INFO Out dated connection ,size=0 - -2025-09-26 00:22:09,328 INFO Connection check task end - -2025-09-26 00:22:10,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:12,328 INFO Connection check task start - -2025-09-26 00:22:12,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:12,329 INFO Out dated connection ,size=0 - -2025-09-26 00:22:12,329 INFO Connection check task end - -2025-09-26 00:22:13,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:15,329 INFO Connection check task start - -2025-09-26 00:22:15,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:15,329 INFO Out dated connection ,size=0 - -2025-09-26 00:22:15,329 INFO Connection check task end - -2025-09-26 00:22:16,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:18,330 INFO Connection check task start - -2025-09-26 00:22:18,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:18,331 INFO Out dated connection ,size=0 - -2025-09-26 00:22:18,331 INFO Connection check task end - -2025-09-26 00:22:19,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:21,331 INFO Connection check task start - -2025-09-26 00:22:21,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:21,332 INFO Out dated connection ,size=0 - -2025-09-26 00:22:21,332 INFO Connection check task end - -2025-09-26 00:22:22,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:24,333 INFO Connection check task start - -2025-09-26 00:22:24,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:24,333 INFO Out dated connection ,size=0 - -2025-09-26 00:22:24,333 INFO Connection check task end - -2025-09-26 00:22:25,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:27,333 INFO Connection check task start - -2025-09-26 00:22:27,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:27,334 INFO Out dated connection ,size=0 - -2025-09-26 00:22:27,334 INFO Connection check task end - -2025-09-26 00:22:28,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:30,334 INFO Connection check task start - -2025-09-26 00:22:30,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:30,334 INFO Out dated connection ,size=0 - -2025-09-26 00:22:30,334 INFO Connection check task end - -2025-09-26 00:22:31,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:33,335 INFO Connection check task start - -2025-09-26 00:22:33,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:33,336 INFO Out dated connection ,size=0 - -2025-09-26 00:22:33,336 INFO Connection check task end - -2025-09-26 00:22:34,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:36,336 INFO Connection check task start - -2025-09-26 00:22:36,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:36,336 INFO Out dated connection ,size=0 - -2025-09-26 00:22:36,336 INFO Connection check task end - -2025-09-26 00:22:38,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:39,337 INFO Connection check task start - -2025-09-26 00:22:39,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:39,337 INFO Out dated connection ,size=0 - -2025-09-26 00:22:39,337 INFO Connection check task end - -2025-09-26 00:22:41,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:42,338 INFO Connection check task start - -2025-09-26 00:22:42,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:42,338 INFO Out dated connection ,size=0 - -2025-09-26 00:22:42,338 INFO Connection check task end - -2025-09-26 00:22:44,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:45,338 INFO Connection check task start - -2025-09-26 00:22:45,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:45,338 INFO Out dated connection ,size=0 - -2025-09-26 00:22:45,338 INFO Connection check task end - -2025-09-26 00:22:47,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:48,339 INFO Connection check task start - -2025-09-26 00:22:48,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:48,339 INFO Out dated connection ,size=0 - -2025-09-26 00:22:48,339 INFO Connection check task end - -2025-09-26 00:22:50,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:51,340 INFO Connection check task start - -2025-09-26 00:22:51,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:51,340 INFO Out dated connection ,size=0 - -2025-09-26 00:22:51,340 INFO Connection check task end - -2025-09-26 00:22:53,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:54,340 INFO Connection check task start - -2025-09-26 00:22:54,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:54,341 INFO Out dated connection ,size=0 - -2025-09-26 00:22:54,341 INFO Connection check task end - -2025-09-26 00:22:56,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:22:57,341 INFO Connection check task start - -2025-09-26 00:22:57,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:22:57,342 INFO Out dated connection ,size=0 - -2025-09-26 00:22:57,342 INFO Connection check task end - -2025-09-26 00:22:59,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:00,343 INFO Connection check task start - -2025-09-26 00:23:00,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:00,343 INFO Out dated connection ,size=0 - -2025-09-26 00:23:00,343 INFO Connection check task end - -2025-09-26 00:23:02,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:03,344 INFO Connection check task start - -2025-09-26 00:23:03,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:03,344 INFO Out dated connection ,size=0 - -2025-09-26 00:23:03,344 INFO Connection check task end - -2025-09-26 00:23:05,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:06,345 INFO Connection check task start - -2025-09-26 00:23:06,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:06,346 INFO Out dated connection ,size=0 - -2025-09-26 00:23:06,346 INFO Connection check task end - -2025-09-26 00:23:08,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:09,346 INFO Connection check task start - -2025-09-26 00:23:09,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:09,347 INFO Out dated connection ,size=0 - -2025-09-26 00:23:09,347 INFO Connection check task end - -2025-09-26 00:23:11,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:12,348 INFO Connection check task start - -2025-09-26 00:23:12,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:12,348 INFO Out dated connection ,size=0 - -2025-09-26 00:23:12,348 INFO Connection check task end - -2025-09-26 00:23:14,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:15,349 INFO Connection check task start - -2025-09-26 00:23:15,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:15,349 INFO Out dated connection ,size=0 - -2025-09-26 00:23:15,349 INFO Connection check task end - -2025-09-26 00:23:17,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:18,349 INFO Connection check task start - -2025-09-26 00:23:18,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:18,350 INFO Out dated connection ,size=0 - -2025-09-26 00:23:18,350 INFO Connection check task end - -2025-09-26 00:23:20,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:21,350 INFO Connection check task start - -2025-09-26 00:23:21,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:21,350 INFO Out dated connection ,size=0 - -2025-09-26 00:23:21,350 INFO Connection check task end - -2025-09-26 00:23:23,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:24,351 INFO Connection check task start - -2025-09-26 00:23:24,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:24,351 INFO Out dated connection ,size=0 - -2025-09-26 00:23:24,351 INFO Connection check task end - -2025-09-26 00:23:26,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:27,351 INFO Connection check task start - -2025-09-26 00:23:27,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:27,352 INFO Out dated connection ,size=0 - -2025-09-26 00:23:27,352 INFO Connection check task end - -2025-09-26 00:23:29,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:30,352 INFO Connection check task start - -2025-09-26 00:23:30,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:30,352 INFO Out dated connection ,size=0 - -2025-09-26 00:23:30,352 INFO Connection check task end - -2025-09-26 00:23:32,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:33,353 INFO Connection check task start - -2025-09-26 00:23:33,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:33,353 INFO Out dated connection ,size=0 - -2025-09-26 00:23:33,354 INFO Connection check task end - -2025-09-26 00:23:35,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:36,355 INFO Connection check task start - -2025-09-26 00:23:36,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:36,355 INFO Out dated connection ,size=0 - -2025-09-26 00:23:36,357 INFO Connection check task end - -2025-09-26 00:23:38,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:39,357 INFO Connection check task start - -2025-09-26 00:23:39,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:39,358 INFO Out dated connection ,size=0 - -2025-09-26 00:23:39,358 INFO Connection check task end - -2025-09-26 00:23:41,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:42,361 INFO Connection check task start - -2025-09-26 00:23:42,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:42,361 INFO Out dated connection ,size=0 - -2025-09-26 00:23:42,361 INFO Connection check task end - -2025-09-26 00:23:44,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:45,362 INFO Connection check task start - -2025-09-26 00:23:45,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:45,362 INFO Out dated connection ,size=0 - -2025-09-26 00:23:45,362 INFO Connection check task end - -2025-09-26 00:23:47,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:48,363 INFO Connection check task start - -2025-09-26 00:23:48,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:48,363 INFO Out dated connection ,size=0 - -2025-09-26 00:23:48,363 INFO Connection check task end - -2025-09-26 00:23:50,050 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:51,364 INFO Connection check task start - -2025-09-26 00:23:51,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:51,364 INFO Out dated connection ,size=0 - -2025-09-26 00:23:51,364 INFO Connection check task end - -2025-09-26 00:23:53,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:54,365 INFO Connection check task start - -2025-09-26 00:23:54,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:54,365 INFO Out dated connection ,size=0 - -2025-09-26 00:23:54,365 INFO Connection check task end - -2025-09-26 00:23:56,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:23:57,366 INFO Connection check task start - -2025-09-26 00:23:57,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:23:57,366 INFO Out dated connection ,size=0 - -2025-09-26 00:23:57,366 INFO Connection check task end - -2025-09-26 00:23:59,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:00,367 INFO Connection check task start - -2025-09-26 00:24:00,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:00,367 INFO Out dated connection ,size=0 - -2025-09-26 00:24:00,367 INFO Connection check task end - -2025-09-26 00:24:02,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:03,367 INFO Connection check task start - -2025-09-26 00:24:03,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:03,367 INFO Out dated connection ,size=0 - -2025-09-26 00:24:03,367 INFO Connection check task end - -2025-09-26 00:24:05,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:06,368 INFO Connection check task start - -2025-09-26 00:24:06,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:06,368 INFO Out dated connection ,size=0 - -2025-09-26 00:24:06,368 INFO Connection check task end - -2025-09-26 00:24:08,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:09,368 INFO Connection check task start - -2025-09-26 00:24:09,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:09,368 INFO Out dated connection ,size=0 - -2025-09-26 00:24:09,368 INFO Connection check task end - -2025-09-26 00:24:11,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:12,369 INFO Connection check task start - -2025-09-26 00:24:12,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:12,369 INFO Out dated connection ,size=0 - -2025-09-26 00:24:12,369 INFO Connection check task end - -2025-09-26 00:24:14,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:15,369 INFO Connection check task start - -2025-09-26 00:24:15,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:15,370 INFO Out dated connection ,size=0 - -2025-09-26 00:24:15,370 INFO Connection check task end - -2025-09-26 00:24:17,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:18,370 INFO Connection check task start - -2025-09-26 00:24:18,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:18,370 INFO Out dated connection ,size=0 - -2025-09-26 00:24:18,370 INFO Connection check task end - -2025-09-26 00:24:20,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:21,372 INFO Connection check task start - -2025-09-26 00:24:21,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:21,372 INFO Out dated connection ,size=0 - -2025-09-26 00:24:21,372 INFO Connection check task end - -2025-09-26 00:24:23,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:24,375 INFO Connection check task start - -2025-09-26 00:24:24,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:24,377 INFO Out dated connection ,size=0 - -2025-09-26 00:24:24,378 INFO Connection check task end - -2025-09-26 00:24:26,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:27,381 INFO Connection check task start - -2025-09-26 00:24:27,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:27,383 INFO Out dated connection ,size=0 - -2025-09-26 00:24:27,383 INFO Connection check task end - -2025-09-26 00:24:29,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:30,383 INFO Connection check task start - -2025-09-26 00:24:30,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:30,383 INFO Out dated connection ,size=0 - -2025-09-26 00:24:30,383 INFO Connection check task end - -2025-09-26 00:24:32,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:33,384 INFO Connection check task start - -2025-09-26 00:24:33,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:33,384 INFO Out dated connection ,size=0 - -2025-09-26 00:24:33,384 INFO Connection check task end - -2025-09-26 00:24:35,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:36,385 INFO Connection check task start - -2025-09-26 00:24:36,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:36,385 INFO Out dated connection ,size=0 - -2025-09-26 00:24:36,385 INFO Connection check task end - -2025-09-26 00:24:38,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:39,385 INFO Connection check task start - -2025-09-26 00:24:39,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:39,386 INFO Out dated connection ,size=0 - -2025-09-26 00:24:39,386 INFO Connection check task end - -2025-09-26 00:24:41,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:42,387 INFO Connection check task start - -2025-09-26 00:24:42,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:42,387 INFO Out dated connection ,size=0 - -2025-09-26 00:24:42,387 INFO Connection check task end - -2025-09-26 00:24:44,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:45,388 INFO Connection check task start - -2025-09-26 00:24:45,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:45,388 INFO Out dated connection ,size=0 - -2025-09-26 00:24:45,388 INFO Connection check task end - -2025-09-26 00:24:47,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:48,389 INFO Connection check task start - -2025-09-26 00:24:48,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:48,390 INFO Out dated connection ,size=0 - -2025-09-26 00:24:48,390 INFO Connection check task end - -2025-09-26 00:24:50,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:51,390 INFO Connection check task start - -2025-09-26 00:24:51,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:51,390 INFO Out dated connection ,size=0 - -2025-09-26 00:24:51,390 INFO Connection check task end - -2025-09-26 00:24:53,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:54,392 INFO Connection check task start - -2025-09-26 00:24:54,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:54,392 INFO Out dated connection ,size=0 - -2025-09-26 00:24:54,392 INFO Connection check task end - -2025-09-26 00:24:56,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:24:57,392 INFO Connection check task start - -2025-09-26 00:24:57,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:24:57,392 INFO Out dated connection ,size=0 - -2025-09-26 00:24:57,392 INFO Connection check task end - -2025-09-26 00:24:59,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:00,393 INFO Connection check task start - -2025-09-26 00:25:00,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:00,393 INFO Out dated connection ,size=0 - -2025-09-26 00:25:00,393 INFO Connection check task end - -2025-09-26 00:25:02,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:03,393 INFO Connection check task start - -2025-09-26 00:25:03,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:03,393 INFO Out dated connection ,size=0 - -2025-09-26 00:25:03,393 INFO Connection check task end - -2025-09-26 00:25:05,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:06,394 INFO Connection check task start - -2025-09-26 00:25:06,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:06,394 INFO Out dated connection ,size=0 - -2025-09-26 00:25:06,394 INFO Connection check task end - -2025-09-26 00:25:08,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:09,445 INFO Connection check task start - -2025-09-26 00:25:09,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:09,490 INFO Out dated connection ,size=0 - -2025-09-26 00:25:09,490 INFO Connection check task end - -2025-09-26 00:25:11,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:12,490 INFO Connection check task start - -2025-09-26 00:25:12,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:12,490 INFO Out dated connection ,size=0 - -2025-09-26 00:25:12,490 INFO Connection check task end - -2025-09-26 00:25:14,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:15,491 INFO Connection check task start - -2025-09-26 00:25:15,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:15,491 INFO Out dated connection ,size=0 - -2025-09-26 00:25:15,491 INFO Connection check task end - -2025-09-26 00:25:17,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:18,492 INFO Connection check task start - -2025-09-26 00:25:18,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:18,492 INFO Out dated connection ,size=0 - -2025-09-26 00:25:18,492 INFO Connection check task end - -2025-09-26 00:25:20,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:21,492 INFO Connection check task start - -2025-09-26 00:25:21,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:21,492 INFO Out dated connection ,size=0 - -2025-09-26 00:25:21,492 INFO Connection check task end - -2025-09-26 00:25:23,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:24,494 INFO Connection check task start - -2025-09-26 00:25:24,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:24,494 INFO Out dated connection ,size=0 - -2025-09-26 00:25:24,494 INFO Connection check task end - -2025-09-26 00:25:26,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:27,494 INFO Connection check task start - -2025-09-26 00:25:27,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:27,494 INFO Out dated connection ,size=0 - -2025-09-26 00:25:27,494 INFO Connection check task end - -2025-09-26 00:25:29,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:30,494 INFO Connection check task start - -2025-09-26 00:25:30,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:30,494 INFO Out dated connection ,size=0 - -2025-09-26 00:25:30,494 INFO Connection check task end - -2025-09-26 00:25:32,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:33,495 INFO Connection check task start - -2025-09-26 00:25:33,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:33,495 INFO Out dated connection ,size=0 - -2025-09-26 00:25:33,495 INFO Connection check task end - -2025-09-26 00:25:35,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:36,496 INFO Connection check task start - -2025-09-26 00:25:36,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:36,497 INFO Out dated connection ,size=0 - -2025-09-26 00:25:36,497 INFO Connection check task end - -2025-09-26 00:25:38,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:39,497 INFO Connection check task start - -2025-09-26 00:25:39,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:39,498 INFO Out dated connection ,size=0 - -2025-09-26 00:25:39,498 INFO Connection check task end - -2025-09-26 00:25:41,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:42,499 INFO Connection check task start - -2025-09-26 00:25:42,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:42,499 INFO Out dated connection ,size=0 - -2025-09-26 00:25:42,499 INFO Connection check task end - -2025-09-26 00:25:44,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:45,499 INFO Connection check task start - -2025-09-26 00:25:45,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:45,499 INFO Out dated connection ,size=0 - -2025-09-26 00:25:45,499 INFO Connection check task end - -2025-09-26 00:25:47,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:48,500 INFO Connection check task start - -2025-09-26 00:25:48,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:48,500 INFO Out dated connection ,size=0 - -2025-09-26 00:25:48,500 INFO Connection check task end - -2025-09-26 00:25:50,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:51,501 INFO Connection check task start - -2025-09-26 00:25:51,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:51,501 INFO Out dated connection ,size=0 - -2025-09-26 00:25:51,501 INFO Connection check task end - -2025-09-26 00:25:53,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:54,503 INFO Connection check task start - -2025-09-26 00:25:54,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:54,503 INFO Out dated connection ,size=0 - -2025-09-26 00:25:54,503 INFO Connection check task end - -2025-09-26 00:25:56,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:25:57,504 INFO Connection check task start - -2025-09-26 00:25:57,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:25:57,504 INFO Out dated connection ,size=0 - -2025-09-26 00:25:57,504 INFO Connection check task end - -2025-09-26 00:25:59,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:00,505 INFO Connection check task start - -2025-09-26 00:26:00,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:00,505 INFO Out dated connection ,size=0 - -2025-09-26 00:26:00,505 INFO Connection check task end - -2025-09-26 00:26:02,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:03,505 INFO Connection check task start - -2025-09-26 00:26:03,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:03,506 INFO Out dated connection ,size=0 - -2025-09-26 00:26:03,506 INFO Connection check task end - -2025-09-26 00:26:05,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:06,506 INFO Connection check task start - -2025-09-26 00:26:06,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:06,506 INFO Out dated connection ,size=0 - -2025-09-26 00:26:06,506 INFO Connection check task end - -2025-09-26 00:26:08,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:09,506 INFO Connection check task start - -2025-09-26 00:26:09,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:09,506 INFO Out dated connection ,size=0 - -2025-09-26 00:26:09,506 INFO Connection check task end - -2025-09-26 00:26:11,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:12,508 INFO Connection check task start - -2025-09-26 00:26:12,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:12,508 INFO Out dated connection ,size=0 - -2025-09-26 00:26:12,508 INFO Connection check task end - -2025-09-26 00:26:14,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:15,508 INFO Connection check task start - -2025-09-26 00:26:15,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:15,509 INFO Out dated connection ,size=0 - -2025-09-26 00:26:15,509 INFO Connection check task end - -2025-09-26 00:26:17,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:18,509 INFO Connection check task start - -2025-09-26 00:26:18,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:18,509 INFO Out dated connection ,size=0 - -2025-09-26 00:26:18,509 INFO Connection check task end - -2025-09-26 00:26:20,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:21,510 INFO Connection check task start - -2025-09-26 00:26:21,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:21,510 INFO Out dated connection ,size=0 - -2025-09-26 00:26:21,510 INFO Connection check task end - -2025-09-26 00:26:23,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:24,511 INFO Connection check task start - -2025-09-26 00:26:24,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:24,511 INFO Out dated connection ,size=0 - -2025-09-26 00:26:24,511 INFO Connection check task end - -2025-09-26 00:26:26,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:27,512 INFO Connection check task start - -2025-09-26 00:26:27,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:27,513 INFO Out dated connection ,size=0 - -2025-09-26 00:26:27,513 INFO Connection check task end - -2025-09-26 00:26:29,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:30,513 INFO Connection check task start - -2025-09-26 00:26:30,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:30,513 INFO Out dated connection ,size=0 - -2025-09-26 00:26:30,513 INFO Connection check task end - -2025-09-26 00:26:32,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:33,514 INFO Connection check task start - -2025-09-26 00:26:33,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:33,514 INFO Out dated connection ,size=0 - -2025-09-26 00:26:33,514 INFO Connection check task end - -2025-09-26 00:26:35,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:36,514 INFO Connection check task start - -2025-09-26 00:26:36,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:36,515 INFO Out dated connection ,size=0 - -2025-09-26 00:26:36,515 INFO Connection check task end - -2025-09-26 00:26:38,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:39,515 INFO Connection check task start - -2025-09-26 00:26:39,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:39,516 INFO Out dated connection ,size=0 - -2025-09-26 00:26:39,516 INFO Connection check task end - -2025-09-26 00:26:41,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:42,517 INFO Connection check task start - -2025-09-26 00:26:42,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:42,517 INFO Out dated connection ,size=0 - -2025-09-26 00:26:42,517 INFO Connection check task end - -2025-09-26 00:26:44,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:45,518 INFO Connection check task start - -2025-09-26 00:26:45,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:45,518 INFO Out dated connection ,size=0 - -2025-09-26 00:26:45,518 INFO Connection check task end - -2025-09-26 00:26:47,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:48,518 INFO Connection check task start - -2025-09-26 00:26:48,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:48,518 INFO Out dated connection ,size=0 - -2025-09-26 00:26:48,518 INFO Connection check task end - -2025-09-26 00:26:50,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:51,519 INFO Connection check task start - -2025-09-26 00:26:51,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:51,519 INFO Out dated connection ,size=0 - -2025-09-26 00:26:51,519 INFO Connection check task end - -2025-09-26 00:26:53,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:54,519 INFO Connection check task start - -2025-09-26 00:26:54,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:54,519 INFO Out dated connection ,size=0 - -2025-09-26 00:26:54,520 INFO Connection check task end - -2025-09-26 00:26:56,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:26:57,521 INFO Connection check task start - -2025-09-26 00:26:57,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:26:57,521 INFO Out dated connection ,size=0 - -2025-09-26 00:26:57,521 INFO Connection check task end - -2025-09-26 00:26:59,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:00,521 INFO Connection check task start - -2025-09-26 00:27:00,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:00,522 INFO Out dated connection ,size=0 - -2025-09-26 00:27:00,522 INFO Connection check task end - -2025-09-26 00:27:02,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:03,523 INFO Connection check task start - -2025-09-26 00:27:03,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:03,523 INFO Out dated connection ,size=0 - -2025-09-26 00:27:03,523 INFO Connection check task end - -2025-09-26 00:27:05,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:06,523 INFO Connection check task start - -2025-09-26 00:27:06,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:06,523 INFO Out dated connection ,size=0 - -2025-09-26 00:27:06,523 INFO Connection check task end - -2025-09-26 00:27:08,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:09,524 INFO Connection check task start - -2025-09-26 00:27:09,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:09,524 INFO Out dated connection ,size=0 - -2025-09-26 00:27:09,524 INFO Connection check task end - -2025-09-26 00:27:11,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:12,524 INFO Connection check task start - -2025-09-26 00:27:12,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:12,524 INFO Out dated connection ,size=0 - -2025-09-26 00:27:12,524 INFO Connection check task end - -2025-09-26 00:27:14,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:15,524 INFO Connection check task start - -2025-09-26 00:27:15,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:15,524 INFO Out dated connection ,size=0 - -2025-09-26 00:27:15,524 INFO Connection check task end - -2025-09-26 00:27:17,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:18,525 INFO Connection check task start - -2025-09-26 00:27:18,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:18,526 INFO Out dated connection ,size=0 - -2025-09-26 00:27:18,526 INFO Connection check task end - -2025-09-26 00:27:20,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:21,526 INFO Connection check task start - -2025-09-26 00:27:21,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:21,526 INFO Out dated connection ,size=0 - -2025-09-26 00:27:21,526 INFO Connection check task end - -2025-09-26 00:27:23,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:24,526 INFO Connection check task start - -2025-09-26 00:27:24,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:24,526 INFO Out dated connection ,size=0 - -2025-09-26 00:27:24,526 INFO Connection check task end - -2025-09-26 00:27:26,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:27,527 INFO Connection check task start - -2025-09-26 00:27:27,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:27,528 INFO Out dated connection ,size=0 - -2025-09-26 00:27:27,528 INFO Connection check task end - -2025-09-26 00:27:29,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:30,529 INFO Connection check task start - -2025-09-26 00:27:30,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:30,529 INFO Out dated connection ,size=0 - -2025-09-26 00:27:30,529 INFO Connection check task end - -2025-09-26 00:27:32,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:33,529 INFO Connection check task start - -2025-09-26 00:27:33,549 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:33,549 INFO Out dated connection ,size=0 - -2025-09-26 00:27:33,549 INFO Connection check task end - -2025-09-26 00:27:35,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:36,567 INFO Connection check task start - -2025-09-26 00:27:36,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:36,575 INFO Out dated connection ,size=0 - -2025-09-26 00:27:36,575 INFO Connection check task end - -2025-09-26 00:27:38,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:39,576 INFO Connection check task start - -2025-09-26 00:27:39,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:39,576 INFO Out dated connection ,size=0 - -2025-09-26 00:27:39,576 INFO Connection check task end - -2025-09-26 00:27:41,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:42,577 INFO Connection check task start - -2025-09-26 00:27:42,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:42,577 INFO Out dated connection ,size=0 - -2025-09-26 00:27:42,577 INFO Connection check task end - -2025-09-26 00:27:44,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:45,585 INFO Connection check task start - -2025-09-26 00:27:45,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:45,632 INFO Out dated connection ,size=0 - -2025-09-26 00:27:45,632 INFO Connection check task end - -2025-09-26 00:27:47,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:48,632 INFO Connection check task start - -2025-09-26 00:27:48,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:48,632 INFO Out dated connection ,size=0 - -2025-09-26 00:27:48,632 INFO Connection check task end - -2025-09-26 00:27:50,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:51,633 INFO Connection check task start - -2025-09-26 00:27:51,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:51,633 INFO Out dated connection ,size=0 - -2025-09-26 00:27:51,633 INFO Connection check task end - -2025-09-26 00:27:53,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:54,634 INFO Connection check task start - -2025-09-26 00:27:54,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:54,634 INFO Out dated connection ,size=0 - -2025-09-26 00:27:54,634 INFO Connection check task end - -2025-09-26 00:27:56,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:27:57,635 INFO Connection check task start - -2025-09-26 00:27:57,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:27:57,635 INFO Out dated connection ,size=0 - -2025-09-26 00:27:57,635 INFO Connection check task end - -2025-09-26 00:27:59,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:00,636 INFO Connection check task start - -2025-09-26 00:28:00,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:00,636 INFO Out dated connection ,size=0 - -2025-09-26 00:28:00,636 INFO Connection check task end - -2025-09-26 00:28:02,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:03,638 INFO Connection check task start - -2025-09-26 00:28:03,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:03,639 INFO Out dated connection ,size=0 - -2025-09-26 00:28:03,639 INFO Connection check task end - -2025-09-26 00:28:05,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:06,639 INFO Connection check task start - -2025-09-26 00:28:06,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:06,640 INFO Out dated connection ,size=0 - -2025-09-26 00:28:06,640 INFO Connection check task end - -2025-09-26 00:28:08,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:09,640 INFO Connection check task start - -2025-09-26 00:28:09,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:09,640 INFO Out dated connection ,size=0 - -2025-09-26 00:28:09,640 INFO Connection check task end - -2025-09-26 00:28:11,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:12,640 INFO Connection check task start - -2025-09-26 00:28:12,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:12,641 INFO Out dated connection ,size=0 - -2025-09-26 00:28:12,641 INFO Connection check task end - -2025-09-26 00:28:14,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:15,641 INFO Connection check task start - -2025-09-26 00:28:15,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:15,641 INFO Out dated connection ,size=0 - -2025-09-26 00:28:15,641 INFO Connection check task end - -2025-09-26 00:28:17,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:18,642 INFO Connection check task start - -2025-09-26 00:28:18,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:18,642 INFO Out dated connection ,size=0 - -2025-09-26 00:28:18,643 INFO Connection check task end - -2025-09-26 00:28:20,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:21,643 INFO Connection check task start - -2025-09-26 00:28:21,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:21,644 INFO Out dated connection ,size=0 - -2025-09-26 00:28:21,644 INFO Connection check task end - -2025-09-26 00:28:23,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:24,644 INFO Connection check task start - -2025-09-26 00:28:24,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:24,644 INFO Out dated connection ,size=0 - -2025-09-26 00:28:24,644 INFO Connection check task end - -2025-09-26 00:28:26,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:27,644 INFO Connection check task start - -2025-09-26 00:28:27,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:27,645 INFO Out dated connection ,size=0 - -2025-09-26 00:28:27,645 INFO Connection check task end - -2025-09-26 00:28:29,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:30,645 INFO Connection check task start - -2025-09-26 00:28:30,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:30,646 INFO Out dated connection ,size=0 - -2025-09-26 00:28:30,646 INFO Connection check task end - -2025-09-26 00:28:32,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:33,646 INFO Connection check task start - -2025-09-26 00:28:33,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:33,646 INFO Out dated connection ,size=0 - -2025-09-26 00:28:33,646 INFO Connection check task end - -2025-09-26 00:28:35,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:36,647 INFO Connection check task start - -2025-09-26 00:28:36,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:36,656 INFO Out dated connection ,size=0 - -2025-09-26 00:28:36,656 INFO Connection check task end - -2025-09-26 00:28:38,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:39,656 INFO Connection check task start - -2025-09-26 00:28:39,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:39,656 INFO Out dated connection ,size=0 - -2025-09-26 00:28:39,656 INFO Connection check task end - -2025-09-26 00:28:41,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:42,657 INFO Connection check task start - -2025-09-26 00:28:42,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:42,657 INFO Out dated connection ,size=0 - -2025-09-26 00:28:42,657 INFO Connection check task end - -2025-09-26 00:28:44,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:45,657 INFO Connection check task start - -2025-09-26 00:28:45,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:45,657 INFO Out dated connection ,size=0 - -2025-09-26 00:28:45,657 INFO Connection check task end - -2025-09-26 00:28:47,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:48,658 INFO Connection check task start - -2025-09-26 00:28:48,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:48,658 INFO Out dated connection ,size=0 - -2025-09-26 00:28:48,658 INFO Connection check task end - -2025-09-26 00:28:50,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:51,658 INFO Connection check task start - -2025-09-26 00:28:51,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:51,658 INFO Out dated connection ,size=0 - -2025-09-26 00:28:51,658 INFO Connection check task end - -2025-09-26 00:28:53,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:54,659 INFO Connection check task start - -2025-09-26 00:28:54,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:54,659 INFO Out dated connection ,size=0 - -2025-09-26 00:28:54,659 INFO Connection check task end - -2025-09-26 00:28:56,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:28:57,659 INFO Connection check task start - -2025-09-26 00:28:57,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:28:57,659 INFO Out dated connection ,size=0 - -2025-09-26 00:28:57,659 INFO Connection check task end - -2025-09-26 00:28:59,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:00,660 INFO Connection check task start - -2025-09-26 00:29:00,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:00,660 INFO Out dated connection ,size=0 - -2025-09-26 00:29:00,660 INFO Connection check task end - -2025-09-26 00:29:02,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:03,660 INFO Connection check task start - -2025-09-26 00:29:03,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:03,660 INFO Out dated connection ,size=0 - -2025-09-26 00:29:03,660 INFO Connection check task end - -2025-09-26 00:29:05,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:06,661 INFO Connection check task start - -2025-09-26 00:29:06,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:06,665 INFO Out dated connection ,size=0 - -2025-09-26 00:29:06,666 INFO Connection check task end - -2025-09-26 00:29:08,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:09,666 INFO Connection check task start - -2025-09-26 00:29:09,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:09,666 INFO Out dated connection ,size=0 - -2025-09-26 00:29:09,666 INFO Connection check task end - -2025-09-26 00:29:11,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:12,666 INFO Connection check task start - -2025-09-26 00:29:12,666 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:12,666 INFO Out dated connection ,size=0 - -2025-09-26 00:29:12,666 INFO Connection check task end - -2025-09-26 00:29:14,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:15,667 INFO Connection check task start - -2025-09-26 00:29:15,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:15,667 INFO Out dated connection ,size=0 - -2025-09-26 00:29:15,667 INFO Connection check task end - -2025-09-26 00:29:17,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:18,668 INFO Connection check task start - -2025-09-26 00:29:18,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:18,668 INFO Out dated connection ,size=0 - -2025-09-26 00:29:18,668 INFO Connection check task end - -2025-09-26 00:29:20,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:21,668 INFO Connection check task start - -2025-09-26 00:29:21,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:21,669 INFO Out dated connection ,size=0 - -2025-09-26 00:29:21,669 INFO Connection check task end - -2025-09-26 00:29:23,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:24,669 INFO Connection check task start - -2025-09-26 00:29:24,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:24,670 INFO Out dated connection ,size=0 - -2025-09-26 00:29:24,670 INFO Connection check task end - -2025-09-26 00:29:26,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:27,670 INFO Connection check task start - -2025-09-26 00:29:27,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:27,670 INFO Out dated connection ,size=0 - -2025-09-26 00:29:27,670 INFO Connection check task end - -2025-09-26 00:29:29,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:30,671 INFO Connection check task start - -2025-09-26 00:29:30,671 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:30,671 INFO Out dated connection ,size=0 - -2025-09-26 00:29:30,672 INFO Connection check task end - -2025-09-26 00:29:32,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:33,672 INFO Connection check task start - -2025-09-26 00:29:33,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:33,672 INFO Out dated connection ,size=0 - -2025-09-26 00:29:33,672 INFO Connection check task end - -2025-09-26 00:29:35,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:36,673 INFO Connection check task start - -2025-09-26 00:29:36,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:36,673 INFO Out dated connection ,size=0 - -2025-09-26 00:29:36,673 INFO Connection check task end - -2025-09-26 00:29:38,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:39,674 INFO Connection check task start - -2025-09-26 00:29:39,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:39,674 INFO Out dated connection ,size=0 - -2025-09-26 00:29:39,674 INFO Connection check task end - -2025-09-26 00:29:41,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:42,674 INFO Connection check task start - -2025-09-26 00:29:42,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:42,675 INFO Out dated connection ,size=0 - -2025-09-26 00:29:42,675 INFO Connection check task end - -2025-09-26 00:29:44,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:45,675 INFO Connection check task start - -2025-09-26 00:29:45,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:45,675 INFO Out dated connection ,size=0 - -2025-09-26 00:29:45,675 INFO Connection check task end - -2025-09-26 00:29:47,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:48,679 INFO Connection check task start - -2025-09-26 00:29:48,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:48,680 INFO Out dated connection ,size=0 - -2025-09-26 00:29:48,680 INFO Connection check task end - -2025-09-26 00:29:50,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:51,680 INFO Connection check task start - -2025-09-26 00:29:51,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:51,680 INFO Out dated connection ,size=0 - -2025-09-26 00:29:51,680 INFO Connection check task end - -2025-09-26 00:29:53,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:54,681 INFO Connection check task start - -2025-09-26 00:29:54,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:54,682 INFO Out dated connection ,size=0 - -2025-09-26 00:29:54,682 INFO Connection check task end - -2025-09-26 00:29:56,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:29:57,682 INFO Connection check task start - -2025-09-26 00:29:57,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:29:57,682 INFO Out dated connection ,size=0 - -2025-09-26 00:29:57,682 INFO Connection check task end - -2025-09-26 00:29:59,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:00,683 INFO Connection check task start - -2025-09-26 00:30:00,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:00,683 INFO Out dated connection ,size=0 - -2025-09-26 00:30:00,683 INFO Connection check task end - -2025-09-26 00:30:02,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:03,683 INFO Connection check task start - -2025-09-26 00:30:03,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:03,683 INFO Out dated connection ,size=0 - -2025-09-26 00:30:03,683 INFO Connection check task end - -2025-09-26 00:30:05,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:06,684 INFO Connection check task start - -2025-09-26 00:30:06,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:06,684 INFO Out dated connection ,size=0 - -2025-09-26 00:30:06,684 INFO Connection check task end - -2025-09-26 00:30:08,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:09,684 INFO Connection check task start - -2025-09-26 00:30:09,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:09,685 INFO Out dated connection ,size=0 - -2025-09-26 00:30:09,685 INFO Connection check task end - -2025-09-26 00:30:11,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:12,685 INFO Connection check task start - -2025-09-26 00:30:12,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:12,685 INFO Out dated connection ,size=0 - -2025-09-26 00:30:12,685 INFO Connection check task end - -2025-09-26 00:30:14,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:15,686 INFO Connection check task start - -2025-09-26 00:30:15,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:15,686 INFO Out dated connection ,size=0 - -2025-09-26 00:30:15,686 INFO Connection check task end - -2025-09-26 00:30:17,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:18,686 INFO Connection check task start - -2025-09-26 00:30:18,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:18,686 INFO Out dated connection ,size=0 - -2025-09-26 00:30:18,686 INFO Connection check task end - -2025-09-26 00:30:20,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:21,687 INFO Connection check task start - -2025-09-26 00:30:21,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:21,687 INFO Out dated connection ,size=0 - -2025-09-26 00:30:21,687 INFO Connection check task end - -2025-09-26 00:30:23,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:24,688 INFO Connection check task start - -2025-09-26 00:30:24,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:24,689 INFO Out dated connection ,size=0 - -2025-09-26 00:30:24,689 INFO Connection check task end - -2025-09-26 00:30:26,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:27,689 INFO Connection check task start - -2025-09-26 00:30:27,690 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:27,690 INFO Out dated connection ,size=0 - -2025-09-26 00:30:27,690 INFO Connection check task end - -2025-09-26 00:30:29,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:30,690 INFO Connection check task start - -2025-09-26 00:30:30,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:30,691 INFO Out dated connection ,size=0 - -2025-09-26 00:30:30,691 INFO Connection check task end - -2025-09-26 00:30:32,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:33,692 INFO Connection check task start - -2025-09-26 00:30:33,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:33,692 INFO Out dated connection ,size=0 - -2025-09-26 00:30:33,692 INFO Connection check task end - -2025-09-26 00:30:35,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:36,693 INFO Connection check task start - -2025-09-26 00:30:36,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:36,693 INFO Out dated connection ,size=0 - -2025-09-26 00:30:36,693 INFO Connection check task end - -2025-09-26 00:30:38,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:39,693 INFO Connection check task start - -2025-09-26 00:30:39,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:39,694 INFO Out dated connection ,size=0 - -2025-09-26 00:30:39,694 INFO Connection check task end - -2025-09-26 00:30:41,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:42,694 INFO Connection check task start - -2025-09-26 00:30:42,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:42,695 INFO Out dated connection ,size=0 - -2025-09-26 00:30:42,695 INFO Connection check task end - -2025-09-26 00:30:44,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:45,695 INFO Connection check task start - -2025-09-26 00:30:45,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:45,696 INFO Out dated connection ,size=0 - -2025-09-26 00:30:45,696 INFO Connection check task end - -2025-09-26 00:30:47,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:48,696 INFO Connection check task start - -2025-09-26 00:30:48,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:48,736 INFO Out dated connection ,size=0 - -2025-09-26 00:30:48,736 INFO Connection check task end - -2025-09-26 00:30:50,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:51,736 INFO Connection check task start - -2025-09-26 00:30:51,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:51,737 INFO Out dated connection ,size=0 - -2025-09-26 00:30:51,737 INFO Connection check task end - -2025-09-26 00:30:53,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:54,737 INFO Connection check task start - -2025-09-26 00:30:54,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:54,737 INFO Out dated connection ,size=0 - -2025-09-26 00:30:54,737 INFO Connection check task end - -2025-09-26 00:30:56,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:30:57,737 INFO Connection check task start - -2025-09-26 00:30:57,737 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:30:57,737 INFO Out dated connection ,size=0 - -2025-09-26 00:30:57,737 INFO Connection check task end - -2025-09-26 00:30:59,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:00,738 INFO Connection check task start - -2025-09-26 00:31:00,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:00,738 INFO Out dated connection ,size=0 - -2025-09-26 00:31:00,738 INFO Connection check task end - -2025-09-26 00:31:02,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:03,738 INFO Connection check task start - -2025-09-26 00:31:03,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:03,738 INFO Out dated connection ,size=0 - -2025-09-26 00:31:03,738 INFO Connection check task end - -2025-09-26 00:31:05,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:06,739 INFO Connection check task start - -2025-09-26 00:31:06,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:06,739 INFO Out dated connection ,size=0 - -2025-09-26 00:31:06,739 INFO Connection check task end - -2025-09-26 00:31:08,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:09,739 INFO Connection check task start - -2025-09-26 00:31:09,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:09,739 INFO Out dated connection ,size=0 - -2025-09-26 00:31:09,740 INFO Connection check task end - -2025-09-26 00:31:11,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:12,740 INFO Connection check task start - -2025-09-26 00:31:12,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:12,740 INFO Out dated connection ,size=0 - -2025-09-26 00:31:12,740 INFO Connection check task end - -2025-09-26 00:31:14,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:15,740 INFO Connection check task start - -2025-09-26 00:31:15,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:15,740 INFO Out dated connection ,size=0 - -2025-09-26 00:31:15,740 INFO Connection check task end - -2025-09-26 00:31:17,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:18,740 INFO Connection check task start - -2025-09-26 00:31:18,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:18,741 INFO Out dated connection ,size=0 - -2025-09-26 00:31:18,741 INFO Connection check task end - -2025-09-26 00:31:20,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:21,741 INFO Connection check task start - -2025-09-26 00:31:21,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:21,741 INFO Out dated connection ,size=0 - -2025-09-26 00:31:21,742 INFO Connection check task end - -2025-09-26 00:31:23,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:24,742 INFO Connection check task start - -2025-09-26 00:31:24,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:24,742 INFO Out dated connection ,size=0 - -2025-09-26 00:31:24,742 INFO Connection check task end - -2025-09-26 00:31:26,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:27,743 INFO Connection check task start - -2025-09-26 00:31:27,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:27,743 INFO Out dated connection ,size=0 - -2025-09-26 00:31:27,743 INFO Connection check task end - -2025-09-26 00:31:29,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:30,744 INFO Connection check task start - -2025-09-26 00:31:30,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:30,744 INFO Out dated connection ,size=0 - -2025-09-26 00:31:30,744 INFO Connection check task end - -2025-09-26 00:31:32,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:33,745 INFO Connection check task start - -2025-09-26 00:31:33,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:33,745 INFO Out dated connection ,size=0 - -2025-09-26 00:31:33,745 INFO Connection check task end - -2025-09-26 00:31:35,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:36,745 INFO Connection check task start - -2025-09-26 00:31:36,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:36,745 INFO Out dated connection ,size=0 - -2025-09-26 00:31:36,745 INFO Connection check task end - -2025-09-26 00:31:38,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:39,746 INFO Connection check task start - -2025-09-26 00:31:39,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:39,746 INFO Out dated connection ,size=0 - -2025-09-26 00:31:39,746 INFO Connection check task end - -2025-09-26 00:31:41,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:42,747 INFO Connection check task start - -2025-09-26 00:31:42,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:42,747 INFO Out dated connection ,size=0 - -2025-09-26 00:31:42,747 INFO Connection check task end - -2025-09-26 00:31:44,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:45,747 INFO Connection check task start - -2025-09-26 00:31:45,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:45,748 INFO Out dated connection ,size=0 - -2025-09-26 00:31:45,748 INFO Connection check task end - -2025-09-26 00:31:47,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:48,748 INFO Connection check task start - -2025-09-26 00:31:48,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:48,748 INFO Out dated connection ,size=0 - -2025-09-26 00:31:48,748 INFO Connection check task end - -2025-09-26 00:31:50,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:51,748 INFO Connection check task start - -2025-09-26 00:31:51,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:51,748 INFO Out dated connection ,size=0 - -2025-09-26 00:31:51,748 INFO Connection check task end - -2025-09-26 00:31:53,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:54,749 INFO Connection check task start - -2025-09-26 00:31:54,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:54,749 INFO Out dated connection ,size=0 - -2025-09-26 00:31:54,749 INFO Connection check task end - -2025-09-26 00:31:56,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:31:57,749 INFO Connection check task start - -2025-09-26 00:31:57,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:31:57,749 INFO Out dated connection ,size=0 - -2025-09-26 00:31:57,749 INFO Connection check task end - -2025-09-26 00:31:59,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:00,750 INFO Connection check task start - -2025-09-26 00:32:00,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:00,750 INFO Out dated connection ,size=0 - -2025-09-26 00:32:00,750 INFO Connection check task end - -2025-09-26 00:32:02,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:03,750 INFO Connection check task start - -2025-09-26 00:32:03,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:03,750 INFO Out dated connection ,size=0 - -2025-09-26 00:32:03,750 INFO Connection check task end - -2025-09-26 00:32:05,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:06,750 INFO Connection check task start - -2025-09-26 00:32:06,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:06,751 INFO Out dated connection ,size=0 - -2025-09-26 00:32:06,751 INFO Connection check task end - -2025-09-26 00:32:08,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:09,751 INFO Connection check task start - -2025-09-26 00:32:09,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:09,751 INFO Out dated connection ,size=0 - -2025-09-26 00:32:09,751 INFO Connection check task end - -2025-09-26 00:32:11,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:12,751 INFO Connection check task start - -2025-09-26 00:32:12,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:12,751 INFO Out dated connection ,size=0 - -2025-09-26 00:32:12,751 INFO Connection check task end - -2025-09-26 00:32:14,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:15,752 INFO Connection check task start - -2025-09-26 00:32:15,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:15,752 INFO Out dated connection ,size=0 - -2025-09-26 00:32:15,752 INFO Connection check task end - -2025-09-26 00:32:17,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:18,752 INFO Connection check task start - -2025-09-26 00:32:18,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:18,752 INFO Out dated connection ,size=0 - -2025-09-26 00:32:18,752 INFO Connection check task end - -2025-09-26 00:32:20,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:21,752 INFO Connection check task start - -2025-09-26 00:32:21,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:21,753 INFO Out dated connection ,size=0 - -2025-09-26 00:32:21,753 INFO Connection check task end - -2025-09-26 00:32:23,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:24,753 INFO Connection check task start - -2025-09-26 00:32:24,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:24,753 INFO Out dated connection ,size=0 - -2025-09-26 00:32:24,753 INFO Connection check task end - -2025-09-26 00:32:26,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:27,753 INFO Connection check task start - -2025-09-26 00:32:27,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:27,753 INFO Out dated connection ,size=0 - -2025-09-26 00:32:27,753 INFO Connection check task end - -2025-09-26 00:32:29,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:30,753 INFO Connection check task start - -2025-09-26 00:32:30,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:30,754 INFO Out dated connection ,size=0 - -2025-09-26 00:32:30,754 INFO Connection check task end - -2025-09-26 00:32:32,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:33,754 INFO Connection check task start - -2025-09-26 00:32:33,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:33,754 INFO Out dated connection ,size=0 - -2025-09-26 00:32:33,754 INFO Connection check task end - -2025-09-26 00:32:35,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:36,754 INFO Connection check task start - -2025-09-26 00:32:36,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:36,754 INFO Out dated connection ,size=0 - -2025-09-26 00:32:36,754 INFO Connection check task end - -2025-09-26 00:32:38,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:39,754 INFO Connection check task start - -2025-09-26 00:32:39,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:39,755 INFO Out dated connection ,size=0 - -2025-09-26 00:32:39,755 INFO Connection check task end - -2025-09-26 00:32:41,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:42,760 INFO Connection check task start - -2025-09-26 00:32:42,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:42,761 INFO Out dated connection ,size=0 - -2025-09-26 00:32:42,761 INFO Connection check task end - -2025-09-26 00:32:44,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:45,761 INFO Connection check task start - -2025-09-26 00:32:45,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:45,761 INFO Out dated connection ,size=0 - -2025-09-26 00:32:45,761 INFO Connection check task end - -2025-09-26 00:32:47,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:48,762 INFO Connection check task start - -2025-09-26 00:32:48,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:48,762 INFO Out dated connection ,size=0 - -2025-09-26 00:32:48,762 INFO Connection check task end - -2025-09-26 00:32:50,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:51,763 INFO Connection check task start - -2025-09-26 00:32:51,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:51,763 INFO Out dated connection ,size=0 - -2025-09-26 00:32:51,763 INFO Connection check task end - -2025-09-26 00:32:53,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:54,764 INFO Connection check task start - -2025-09-26 00:32:54,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:54,764 INFO Out dated connection ,size=0 - -2025-09-26 00:32:54,764 INFO Connection check task end - -2025-09-26 00:32:56,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:32:57,765 INFO Connection check task start - -2025-09-26 00:32:57,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:32:57,765 INFO Out dated connection ,size=0 - -2025-09-26 00:32:57,765 INFO Connection check task end - -2025-09-26 00:32:59,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:00,774 INFO Connection check task start - -2025-09-26 00:33:00,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:00,777 INFO Out dated connection ,size=0 - -2025-09-26 00:33:00,777 INFO Connection check task end - -2025-09-26 00:33:02,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:03,778 INFO Connection check task start - -2025-09-26 00:33:03,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:03,778 INFO Out dated connection ,size=0 - -2025-09-26 00:33:03,778 INFO Connection check task end - -2025-09-26 00:33:05,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:06,779 INFO Connection check task start - -2025-09-26 00:33:06,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:06,779 INFO Out dated connection ,size=0 - -2025-09-26 00:33:06,779 INFO Connection check task end - -2025-09-26 00:33:08,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:09,779 INFO Connection check task start - -2025-09-26 00:33:09,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:09,779 INFO Out dated connection ,size=0 - -2025-09-26 00:33:09,779 INFO Connection check task end - -2025-09-26 00:33:11,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:12,780 INFO Connection check task start - -2025-09-26 00:33:12,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:12,781 INFO Out dated connection ,size=0 - -2025-09-26 00:33:12,781 INFO Connection check task end - -2025-09-26 00:33:14,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:15,781 INFO Connection check task start - -2025-09-26 00:33:15,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:15,781 INFO Out dated connection ,size=0 - -2025-09-26 00:33:15,781 INFO Connection check task end - -2025-09-26 00:33:17,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:18,781 INFO Connection check task start - -2025-09-26 00:33:18,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:18,782 INFO Out dated connection ,size=0 - -2025-09-26 00:33:18,782 INFO Connection check task end - -2025-09-26 00:33:20,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:21,782 INFO Connection check task start - -2025-09-26 00:33:21,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:21,782 INFO Out dated connection ,size=0 - -2025-09-26 00:33:21,782 INFO Connection check task end - -2025-09-26 00:33:23,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:24,782 INFO Connection check task start - -2025-09-26 00:33:24,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:24,783 INFO Out dated connection ,size=0 - -2025-09-26 00:33:24,783 INFO Connection check task end - -2025-09-26 00:33:26,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:27,783 INFO Connection check task start - -2025-09-26 00:33:27,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:27,783 INFO Out dated connection ,size=0 - -2025-09-26 00:33:27,783 INFO Connection check task end - -2025-09-26 00:33:29,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:30,783 INFO Connection check task start - -2025-09-26 00:33:30,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:30,783 INFO Out dated connection ,size=0 - -2025-09-26 00:33:30,783 INFO Connection check task end - -2025-09-26 00:33:32,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:33,784 INFO Connection check task start - -2025-09-26 00:33:33,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:33,784 INFO Out dated connection ,size=0 - -2025-09-26 00:33:33,784 INFO Connection check task end - -2025-09-26 00:33:35,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:36,784 INFO Connection check task start - -2025-09-26 00:33:36,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:36,784 INFO Out dated connection ,size=0 - -2025-09-26 00:33:36,784 INFO Connection check task end - -2025-09-26 00:33:38,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:39,785 INFO Connection check task start - -2025-09-26 00:33:39,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:39,785 INFO Out dated connection ,size=0 - -2025-09-26 00:33:39,785 INFO Connection check task end - -2025-09-26 00:33:41,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:42,788 INFO Connection check task start - -2025-09-26 00:33:42,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:42,788 INFO Out dated connection ,size=0 - -2025-09-26 00:33:42,788 INFO Connection check task end - -2025-09-26 00:33:44,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:45,789 INFO Connection check task start - -2025-09-26 00:33:45,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:45,789 INFO Out dated connection ,size=0 - -2025-09-26 00:33:45,789 INFO Connection check task end - -2025-09-26 00:33:47,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:48,789 INFO Connection check task start - -2025-09-26 00:33:48,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:48,790 INFO Out dated connection ,size=0 - -2025-09-26 00:33:48,790 INFO Connection check task end - -2025-09-26 00:33:50,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:51,790 INFO Connection check task start - -2025-09-26 00:33:51,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:51,790 INFO Out dated connection ,size=0 - -2025-09-26 00:33:51,790 INFO Connection check task end - -2025-09-26 00:33:53,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:54,791 INFO Connection check task start - -2025-09-26 00:33:54,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:54,791 INFO Out dated connection ,size=0 - -2025-09-26 00:33:54,791 INFO Connection check task end - -2025-09-26 00:33:56,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:33:57,792 INFO Connection check task start - -2025-09-26 00:33:57,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:33:57,792 INFO Out dated connection ,size=0 - -2025-09-26 00:33:57,792 INFO Connection check task end - -2025-09-26 00:33:59,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:00,793 INFO Connection check task start - -2025-09-26 00:34:00,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:00,793 INFO Out dated connection ,size=0 - -2025-09-26 00:34:00,793 INFO Connection check task end - -2025-09-26 00:34:02,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:03,793 INFO Connection check task start - -2025-09-26 00:34:03,793 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:03,793 INFO Out dated connection ,size=0 - -2025-09-26 00:34:03,793 INFO Connection check task end - -2025-09-26 00:34:05,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:06,793 INFO Connection check task start - -2025-09-26 00:34:06,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:06,794 INFO Out dated connection ,size=0 - -2025-09-26 00:34:06,794 INFO Connection check task end - -2025-09-26 00:34:08,194 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:09,795 INFO Connection check task start - -2025-09-26 00:34:09,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:09,795 INFO Out dated connection ,size=0 - -2025-09-26 00:34:09,795 INFO Connection check task end - -2025-09-26 00:34:11,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:12,796 INFO Connection check task start - -2025-09-26 00:34:12,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:12,796 INFO Out dated connection ,size=0 - -2025-09-26 00:34:12,796 INFO Connection check task end - -2025-09-26 00:34:14,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:15,796 INFO Connection check task start - -2025-09-26 00:34:15,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:15,796 INFO Out dated connection ,size=0 - -2025-09-26 00:34:15,796 INFO Connection check task end - -2025-09-26 00:34:17,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:18,797 INFO Connection check task start - -2025-09-26 00:34:18,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:18,797 INFO Out dated connection ,size=0 - -2025-09-26 00:34:18,797 INFO Connection check task end - -2025-09-26 00:34:20,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:21,797 INFO Connection check task start - -2025-09-26 00:34:21,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:21,797 INFO Out dated connection ,size=0 - -2025-09-26 00:34:21,797 INFO Connection check task end - -2025-09-26 00:34:23,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:24,798 INFO Connection check task start - -2025-09-26 00:34:24,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:24,798 INFO Out dated connection ,size=0 - -2025-09-26 00:34:24,798 INFO Connection check task end - -2025-09-26 00:34:26,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:27,800 INFO Connection check task start - -2025-09-26 00:34:27,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:27,800 INFO Out dated connection ,size=0 - -2025-09-26 00:34:27,801 INFO Connection check task end - -2025-09-26 00:34:29,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:30,801 INFO Connection check task start - -2025-09-26 00:34:30,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:30,801 INFO Out dated connection ,size=0 - -2025-09-26 00:34:30,801 INFO Connection check task end - -2025-09-26 00:34:32,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:33,802 INFO Connection check task start - -2025-09-26 00:34:33,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:33,802 INFO Out dated connection ,size=0 - -2025-09-26 00:34:33,802 INFO Connection check task end - -2025-09-26 00:34:35,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:36,802 INFO Connection check task start - -2025-09-26 00:34:36,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:36,803 INFO Out dated connection ,size=0 - -2025-09-26 00:34:36,803 INFO Connection check task end - -2025-09-26 00:34:38,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:39,803 INFO Connection check task start - -2025-09-26 00:34:39,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:39,803 INFO Out dated connection ,size=0 - -2025-09-26 00:34:39,803 INFO Connection check task end - -2025-09-26 00:34:41,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:42,803 INFO Connection check task start - -2025-09-26 00:34:42,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:42,803 INFO Out dated connection ,size=0 - -2025-09-26 00:34:42,803 INFO Connection check task end - -2025-09-26 00:34:44,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:45,804 INFO Connection check task start - -2025-09-26 00:34:45,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:45,804 INFO Out dated connection ,size=0 - -2025-09-26 00:34:45,804 INFO Connection check task end - -2025-09-26 00:34:47,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:48,805 INFO Connection check task start - -2025-09-26 00:34:48,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:48,805 INFO Out dated connection ,size=0 - -2025-09-26 00:34:48,805 INFO Connection check task end - -2025-09-26 00:34:50,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:51,806 INFO Connection check task start - -2025-09-26 00:34:51,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:51,806 INFO Out dated connection ,size=0 - -2025-09-26 00:34:51,806 INFO Connection check task end - -2025-09-26 00:34:53,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:54,806 INFO Connection check task start - -2025-09-26 00:34:54,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:54,806 INFO Out dated connection ,size=0 - -2025-09-26 00:34:54,806 INFO Connection check task end - -2025-09-26 00:34:56,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:34:57,806 INFO Connection check task start - -2025-09-26 00:34:57,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:34:57,807 INFO Out dated connection ,size=0 - -2025-09-26 00:34:57,807 INFO Connection check task end - -2025-09-26 00:34:59,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:00,807 INFO Connection check task start - -2025-09-26 00:35:00,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:00,807 INFO Out dated connection ,size=0 - -2025-09-26 00:35:00,807 INFO Connection check task end - -2025-09-26 00:35:02,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:03,808 INFO Connection check task start - -2025-09-26 00:35:03,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:03,809 INFO Out dated connection ,size=0 - -2025-09-26 00:35:03,809 INFO Connection check task end - -2025-09-26 00:35:05,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:06,810 INFO Connection check task start - -2025-09-26 00:35:06,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:06,810 INFO Out dated connection ,size=0 - -2025-09-26 00:35:06,810 INFO Connection check task end - -2025-09-26 00:35:08,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:09,810 INFO Connection check task start - -2025-09-26 00:35:09,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:09,811 INFO Out dated connection ,size=0 - -2025-09-26 00:35:09,811 INFO Connection check task end - -2025-09-26 00:35:11,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:12,812 INFO Connection check task start - -2025-09-26 00:35:12,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:12,812 INFO Out dated connection ,size=0 - -2025-09-26 00:35:12,812 INFO Connection check task end - -2025-09-26 00:35:14,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:15,813 INFO Connection check task start - -2025-09-26 00:35:15,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:15,813 INFO Out dated connection ,size=0 - -2025-09-26 00:35:15,813 INFO Connection check task end - -2025-09-26 00:35:17,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:18,815 INFO Connection check task start - -2025-09-26 00:35:18,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:18,815 INFO Out dated connection ,size=0 - -2025-09-26 00:35:18,815 INFO Connection check task end - -2025-09-26 00:35:20,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:21,815 INFO Connection check task start - -2025-09-26 00:35:21,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:21,816 INFO Out dated connection ,size=0 - -2025-09-26 00:35:21,816 INFO Connection check task end - -2025-09-26 00:35:23,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:24,816 INFO Connection check task start - -2025-09-26 00:35:24,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:24,816 INFO Out dated connection ,size=0 - -2025-09-26 00:35:24,816 INFO Connection check task end - -2025-09-26 00:35:26,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:27,817 INFO Connection check task start - -2025-09-26 00:35:27,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:27,817 INFO Out dated connection ,size=0 - -2025-09-26 00:35:27,817 INFO Connection check task end - -2025-09-26 00:35:29,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:30,818 INFO Connection check task start - -2025-09-26 00:35:30,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:30,819 INFO Out dated connection ,size=0 - -2025-09-26 00:35:30,819 INFO Connection check task end - -2025-09-26 00:35:32,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:33,819 INFO Connection check task start - -2025-09-26 00:35:33,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:33,819 INFO Out dated connection ,size=0 - -2025-09-26 00:35:33,819 INFO Connection check task end - -2025-09-26 00:35:35,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:36,819 INFO Connection check task start - -2025-09-26 00:35:36,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:36,820 INFO Out dated connection ,size=0 - -2025-09-26 00:35:36,820 INFO Connection check task end - -2025-09-26 00:35:38,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:39,820 INFO Connection check task start - -2025-09-26 00:35:39,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:39,821 INFO Out dated connection ,size=0 - -2025-09-26 00:35:39,821 INFO Connection check task end - -2025-09-26 00:35:41,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:42,822 INFO Connection check task start - -2025-09-26 00:35:42,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:42,822 INFO Out dated connection ,size=0 - -2025-09-26 00:35:42,822 INFO Connection check task end - -2025-09-26 00:35:44,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:45,822 INFO Connection check task start - -2025-09-26 00:35:45,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:45,823 INFO Out dated connection ,size=0 - -2025-09-26 00:35:45,823 INFO Connection check task end - -2025-09-26 00:35:47,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:48,823 INFO Connection check task start - -2025-09-26 00:35:48,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:48,823 INFO Out dated connection ,size=0 - -2025-09-26 00:35:48,823 INFO Connection check task end - -2025-09-26 00:35:50,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:51,824 INFO Connection check task start - -2025-09-26 00:35:51,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:51,824 INFO Out dated connection ,size=0 - -2025-09-26 00:35:51,824 INFO Connection check task end - -2025-09-26 00:35:53,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:54,825 INFO Connection check task start - -2025-09-26 00:35:54,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:54,825 INFO Out dated connection ,size=0 - -2025-09-26 00:35:54,825 INFO Connection check task end - -2025-09-26 00:35:56,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:35:57,826 INFO Connection check task start - -2025-09-26 00:35:57,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:35:57,826 INFO Out dated connection ,size=0 - -2025-09-26 00:35:57,826 INFO Connection check task end - -2025-09-26 00:35:59,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:00,827 INFO Connection check task start - -2025-09-26 00:36:00,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:00,827 INFO Out dated connection ,size=0 - -2025-09-26 00:36:00,827 INFO Connection check task end - -2025-09-26 00:36:02,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:03,827 INFO Connection check task start - -2025-09-26 00:36:03,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:03,828 INFO Out dated connection ,size=0 - -2025-09-26 00:36:03,828 INFO Connection check task end - -2025-09-26 00:36:05,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:06,828 INFO Connection check task start - -2025-09-26 00:36:06,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:06,828 INFO Out dated connection ,size=0 - -2025-09-26 00:36:06,828 INFO Connection check task end - -2025-09-26 00:36:08,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:09,830 INFO Connection check task start - -2025-09-26 00:36:09,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:09,830 INFO Out dated connection ,size=0 - -2025-09-26 00:36:09,830 INFO Connection check task end - -2025-09-26 00:36:11,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:12,831 INFO Connection check task start - -2025-09-26 00:36:12,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:12,831 INFO Out dated connection ,size=0 - -2025-09-26 00:36:12,831 INFO Connection check task end - -2025-09-26 00:36:14,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:15,832 INFO Connection check task start - -2025-09-26 00:36:15,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:15,832 INFO Out dated connection ,size=0 - -2025-09-26 00:36:15,832 INFO Connection check task end - -2025-09-26 00:36:17,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:18,833 INFO Connection check task start - -2025-09-26 00:36:18,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:18,833 INFO Out dated connection ,size=0 - -2025-09-26 00:36:18,833 INFO Connection check task end - -2025-09-26 00:36:20,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:21,834 INFO Connection check task start - -2025-09-26 00:36:21,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:21,834 INFO Out dated connection ,size=0 - -2025-09-26 00:36:21,835 INFO Connection check task end - -2025-09-26 00:36:23,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:24,835 INFO Connection check task start - -2025-09-26 00:36:24,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:24,835 INFO Out dated connection ,size=0 - -2025-09-26 00:36:24,835 INFO Connection check task end - -2025-09-26 00:36:26,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:27,836 INFO Connection check task start - -2025-09-26 00:36:27,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:27,836 INFO Out dated connection ,size=0 - -2025-09-26 00:36:27,836 INFO Connection check task end - -2025-09-26 00:36:29,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:30,836 INFO Connection check task start - -2025-09-26 00:36:30,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:30,836 INFO Out dated connection ,size=0 - -2025-09-26 00:36:30,836 INFO Connection check task end - -2025-09-26 00:36:32,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:33,837 INFO Connection check task start - -2025-09-26 00:36:33,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:33,837 INFO Out dated connection ,size=0 - -2025-09-26 00:36:33,837 INFO Connection check task end - -2025-09-26 00:36:35,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:36,838 INFO Connection check task start - -2025-09-26 00:36:36,838 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:36,839 INFO Out dated connection ,size=0 - -2025-09-26 00:36:36,839 INFO Connection check task end - -2025-09-26 00:36:38,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:39,840 INFO Connection check task start - -2025-09-26 00:36:39,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:39,840 INFO Out dated connection ,size=0 - -2025-09-26 00:36:39,840 INFO Connection check task end - -2025-09-26 00:36:41,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:42,841 INFO Connection check task start - -2025-09-26 00:36:42,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:42,841 INFO Out dated connection ,size=0 - -2025-09-26 00:36:42,841 INFO Connection check task end - -2025-09-26 00:36:44,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:45,843 INFO Connection check task start - -2025-09-26 00:36:45,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:45,843 INFO Out dated connection ,size=0 - -2025-09-26 00:36:45,843 INFO Connection check task end - -2025-09-26 00:36:47,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:48,844 INFO Connection check task start - -2025-09-26 00:36:48,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:48,844 INFO Out dated connection ,size=0 - -2025-09-26 00:36:48,844 INFO Connection check task end - -2025-09-26 00:36:50,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:51,845 INFO Connection check task start - -2025-09-26 00:36:51,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:51,845 INFO Out dated connection ,size=0 - -2025-09-26 00:36:51,845 INFO Connection check task end - -2025-09-26 00:36:53,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:54,846 INFO Connection check task start - -2025-09-26 00:36:54,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:54,846 INFO Out dated connection ,size=0 - -2025-09-26 00:36:54,846 INFO Connection check task end - -2025-09-26 00:36:56,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:36:57,847 INFO Connection check task start - -2025-09-26 00:36:57,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:36:57,847 INFO Out dated connection ,size=0 - -2025-09-26 00:36:57,847 INFO Connection check task end - -2025-09-26 00:36:59,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:00,847 INFO Connection check task start - -2025-09-26 00:37:00,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:00,847 INFO Out dated connection ,size=0 - -2025-09-26 00:37:00,847 INFO Connection check task end - -2025-09-26 00:37:02,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:03,848 INFO Connection check task start - -2025-09-26 00:37:03,848 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:03,848 INFO Out dated connection ,size=0 - -2025-09-26 00:37:03,848 INFO Connection check task end - -2025-09-26 00:37:05,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:06,849 INFO Connection check task start - -2025-09-26 00:37:06,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:06,849 INFO Out dated connection ,size=0 - -2025-09-26 00:37:06,849 INFO Connection check task end - -2025-09-26 00:37:08,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:09,850 INFO Connection check task start - -2025-09-26 00:37:09,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:09,850 INFO Out dated connection ,size=0 - -2025-09-26 00:37:09,850 INFO Connection check task end - -2025-09-26 00:37:11,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:12,850 INFO Connection check task start - -2025-09-26 00:37:12,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:12,851 INFO Out dated connection ,size=0 - -2025-09-26 00:37:12,851 INFO Connection check task end - -2025-09-26 00:37:14,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:15,851 INFO Connection check task start - -2025-09-26 00:37:15,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:15,851 INFO Out dated connection ,size=0 - -2025-09-26 00:37:15,851 INFO Connection check task end - -2025-09-26 00:37:17,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:18,852 INFO Connection check task start - -2025-09-26 00:37:18,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:18,853 INFO Out dated connection ,size=0 - -2025-09-26 00:37:18,853 INFO Connection check task end - -2025-09-26 00:37:20,304 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:21,853 INFO Connection check task start - -2025-09-26 00:37:21,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:21,854 INFO Out dated connection ,size=0 - -2025-09-26 00:37:21,854 INFO Connection check task end - -2025-09-26 00:37:23,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:24,854 INFO Connection check task start - -2025-09-26 00:37:24,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:24,855 INFO Out dated connection ,size=0 - -2025-09-26 00:37:24,855 INFO Connection check task end - -2025-09-26 00:37:26,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:27,855 INFO Connection check task start - -2025-09-26 00:37:27,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:27,855 INFO Out dated connection ,size=0 - -2025-09-26 00:37:27,855 INFO Connection check task end - -2025-09-26 00:37:29,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:30,856 INFO Connection check task start - -2025-09-26 00:37:30,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:30,856 INFO Out dated connection ,size=0 - -2025-09-26 00:37:30,856 INFO Connection check task end - -2025-09-26 00:37:32,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:33,856 INFO Connection check task start - -2025-09-26 00:37:33,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:33,856 INFO Out dated connection ,size=0 - -2025-09-26 00:37:33,856 INFO Connection check task end - -2025-09-26 00:37:35,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:36,857 INFO Connection check task start - -2025-09-26 00:37:36,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:36,859 INFO Out dated connection ,size=0 - -2025-09-26 00:37:36,859 INFO Connection check task end - -2025-09-26 00:37:38,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:39,859 INFO Connection check task start - -2025-09-26 00:37:39,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:39,859 INFO Out dated connection ,size=0 - -2025-09-26 00:37:39,859 INFO Connection check task end - -2025-09-26 00:37:41,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:42,860 INFO Connection check task start - -2025-09-26 00:37:42,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:42,861 INFO Out dated connection ,size=0 - -2025-09-26 00:37:42,861 INFO Connection check task end - -2025-09-26 00:37:44,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:45,861 INFO Connection check task start - -2025-09-26 00:37:45,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:45,862 INFO Out dated connection ,size=0 - -2025-09-26 00:37:45,862 INFO Connection check task end - -2025-09-26 00:37:47,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:48,862 INFO Connection check task start - -2025-09-26 00:37:48,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:48,863 INFO Out dated connection ,size=0 - -2025-09-26 00:37:48,863 INFO Connection check task end - -2025-09-26 00:37:50,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:51,863 INFO Connection check task start - -2025-09-26 00:37:51,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:51,863 INFO Out dated connection ,size=0 - -2025-09-26 00:37:51,863 INFO Connection check task end - -2025-09-26 00:37:53,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:54,864 INFO Connection check task start - -2025-09-26 00:37:54,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:54,864 INFO Out dated connection ,size=0 - -2025-09-26 00:37:54,864 INFO Connection check task end - -2025-09-26 00:37:56,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:37:57,865 INFO Connection check task start - -2025-09-26 00:37:57,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:37:57,865 INFO Out dated connection ,size=0 - -2025-09-26 00:37:57,865 INFO Connection check task end - -2025-09-26 00:37:59,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:00,866 INFO Connection check task start - -2025-09-26 00:38:00,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:00,866 INFO Out dated connection ,size=0 - -2025-09-26 00:38:00,866 INFO Connection check task end - -2025-09-26 00:38:02,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:03,873 INFO Connection check task start - -2025-09-26 00:38:03,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:03,874 INFO Out dated connection ,size=0 - -2025-09-26 00:38:03,874 INFO Connection check task end - -2025-09-26 00:38:05,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:06,875 INFO Connection check task start - -2025-09-26 00:38:06,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:06,875 INFO Out dated connection ,size=0 - -2025-09-26 00:38:06,875 INFO Connection check task end - -2025-09-26 00:38:08,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:09,876 INFO Connection check task start - -2025-09-26 00:38:09,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:09,876 INFO Out dated connection ,size=0 - -2025-09-26 00:38:09,876 INFO Connection check task end - -2025-09-26 00:38:11,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:12,877 INFO Connection check task start - -2025-09-26 00:38:12,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:12,877 INFO Out dated connection ,size=0 - -2025-09-26 00:38:12,877 INFO Connection check task end - -2025-09-26 00:38:14,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:15,881 INFO Connection check task start - -2025-09-26 00:38:15,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:15,881 INFO Out dated connection ,size=0 - -2025-09-26 00:38:15,881 INFO Connection check task end - -2025-09-26 00:38:17,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:18,882 INFO Connection check task start - -2025-09-26 00:38:18,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:18,882 INFO Out dated connection ,size=0 - -2025-09-26 00:38:18,882 INFO Connection check task end - -2025-09-26 00:38:20,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:21,882 INFO Connection check task start - -2025-09-26 00:38:21,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:21,882 INFO Out dated connection ,size=0 - -2025-09-26 00:38:21,882 INFO Connection check task end - -2025-09-26 00:38:23,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:24,882 INFO Connection check task start - -2025-09-26 00:38:24,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:24,883 INFO Out dated connection ,size=0 - -2025-09-26 00:38:24,883 INFO Connection check task end - -2025-09-26 00:38:26,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:27,884 INFO Connection check task start - -2025-09-26 00:38:27,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:27,885 INFO Out dated connection ,size=0 - -2025-09-26 00:38:27,885 INFO Connection check task end - -2025-09-26 00:38:29,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:30,886 INFO Connection check task start - -2025-09-26 00:38:30,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:30,886 INFO Out dated connection ,size=0 - -2025-09-26 00:38:30,886 INFO Connection check task end - -2025-09-26 00:38:32,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:33,886 INFO Connection check task start - -2025-09-26 00:38:33,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:33,887 INFO Out dated connection ,size=0 - -2025-09-26 00:38:33,887 INFO Connection check task end - -2025-09-26 00:38:35,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:36,887 INFO Connection check task start - -2025-09-26 00:38:36,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:36,888 INFO Out dated connection ,size=0 - -2025-09-26 00:38:36,888 INFO Connection check task end - -2025-09-26 00:38:38,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:39,889 INFO Connection check task start - -2025-09-26 00:38:39,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:39,889 INFO Out dated connection ,size=0 - -2025-09-26 00:38:39,889 INFO Connection check task end - -2025-09-26 00:38:41,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:42,889 INFO Connection check task start - -2025-09-26 00:38:42,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:42,889 INFO Out dated connection ,size=0 - -2025-09-26 00:38:42,889 INFO Connection check task end - -2025-09-26 00:38:44,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:45,890 INFO Connection check task start - -2025-09-26 00:38:45,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:45,890 INFO Out dated connection ,size=0 - -2025-09-26 00:38:45,890 INFO Connection check task end - -2025-09-26 00:38:47,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:48,891 INFO Connection check task start - -2025-09-26 00:38:48,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:48,891 INFO Out dated connection ,size=0 - -2025-09-26 00:38:48,891 INFO Connection check task end - -2025-09-26 00:38:50,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:51,891 INFO Connection check task start - -2025-09-26 00:38:51,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:51,891 INFO Out dated connection ,size=0 - -2025-09-26 00:38:51,892 INFO Connection check task end - -2025-09-26 00:38:53,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:54,892 INFO Connection check task start - -2025-09-26 00:38:54,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:54,892 INFO Out dated connection ,size=0 - -2025-09-26 00:38:54,892 INFO Connection check task end - -2025-09-26 00:38:56,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:38:57,892 INFO Connection check task start - -2025-09-26 00:38:57,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:38:57,893 INFO Out dated connection ,size=0 - -2025-09-26 00:38:57,893 INFO Connection check task end - -2025-09-26 00:38:59,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:00,894 INFO Connection check task start - -2025-09-26 00:39:00,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:00,894 INFO Out dated connection ,size=0 - -2025-09-26 00:39:00,894 INFO Connection check task end - -2025-09-26 00:39:02,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:03,895 INFO Connection check task start - -2025-09-26 00:39:03,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:03,895 INFO Out dated connection ,size=0 - -2025-09-26 00:39:03,896 INFO Connection check task end - -2025-09-26 00:39:05,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:06,896 INFO Connection check task start - -2025-09-26 00:39:06,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:06,897 INFO Out dated connection ,size=0 - -2025-09-26 00:39:06,897 INFO Connection check task end - -2025-09-26 00:39:08,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:09,897 INFO Connection check task start - -2025-09-26 00:39:09,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:09,897 INFO Out dated connection ,size=0 - -2025-09-26 00:39:09,898 INFO Connection check task end - -2025-09-26 00:39:11,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:12,898 INFO Connection check task start - -2025-09-26 00:39:12,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:12,898 INFO Out dated connection ,size=0 - -2025-09-26 00:39:12,898 INFO Connection check task end - -2025-09-26 00:39:14,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:15,898 INFO Connection check task start - -2025-09-26 00:39:15,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:15,899 INFO Out dated connection ,size=0 - -2025-09-26 00:39:15,899 INFO Connection check task end - -2025-09-26 00:39:17,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:18,899 INFO Connection check task start - -2025-09-26 00:39:18,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:18,899 INFO Out dated connection ,size=0 - -2025-09-26 00:39:18,899 INFO Connection check task end - -2025-09-26 00:39:20,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:21,900 INFO Connection check task start - -2025-09-26 00:39:21,900 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:21,901 INFO Out dated connection ,size=0 - -2025-09-26 00:39:21,901 INFO Connection check task end - -2025-09-26 00:39:23,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:24,901 INFO Connection check task start - -2025-09-26 00:39:24,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:24,901 INFO Out dated connection ,size=0 - -2025-09-26 00:39:24,901 INFO Connection check task end - -2025-09-26 00:39:26,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:27,901 INFO Connection check task start - -2025-09-26 00:39:27,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:27,902 INFO Out dated connection ,size=0 - -2025-09-26 00:39:27,902 INFO Connection check task end - -2025-09-26 00:39:29,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:30,902 INFO Connection check task start - -2025-09-26 00:39:30,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:30,902 INFO Out dated connection ,size=0 - -2025-09-26 00:39:30,902 INFO Connection check task end - -2025-09-26 00:39:32,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:33,902 INFO Connection check task start - -2025-09-26 00:39:33,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:33,903 INFO Out dated connection ,size=0 - -2025-09-26 00:39:33,903 INFO Connection check task end - -2025-09-26 00:39:35,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:36,903 INFO Connection check task start - -2025-09-26 00:39:36,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:36,903 INFO Out dated connection ,size=0 - -2025-09-26 00:39:36,903 INFO Connection check task end - -2025-09-26 00:39:38,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:39,904 INFO Connection check task start - -2025-09-26 00:39:39,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:39,904 INFO Out dated connection ,size=0 - -2025-09-26 00:39:39,904 INFO Connection check task end - -2025-09-26 00:39:41,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:42,904 INFO Connection check task start - -2025-09-26 00:39:42,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:42,904 INFO Out dated connection ,size=0 - -2025-09-26 00:39:42,904 INFO Connection check task end - -2025-09-26 00:39:44,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:45,906 INFO Connection check task start - -2025-09-26 00:39:45,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:45,906 INFO Out dated connection ,size=0 - -2025-09-26 00:39:45,906 INFO Connection check task end - -2025-09-26 00:39:47,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:48,907 INFO Connection check task start - -2025-09-26 00:39:48,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:48,907 INFO Out dated connection ,size=0 - -2025-09-26 00:39:48,907 INFO Connection check task end - -2025-09-26 00:39:50,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:51,908 INFO Connection check task start - -2025-09-26 00:39:51,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:51,908 INFO Out dated connection ,size=0 - -2025-09-26 00:39:51,908 INFO Connection check task end - -2025-09-26 00:39:53,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:54,909 INFO Connection check task start - -2025-09-26 00:39:54,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:54,910 INFO Out dated connection ,size=0 - -2025-09-26 00:39:54,910 INFO Connection check task end - -2025-09-26 00:39:56,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:39:57,911 INFO Connection check task start - -2025-09-26 00:39:57,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:39:57,911 INFO Out dated connection ,size=0 - -2025-09-26 00:39:57,911 INFO Connection check task end - -2025-09-26 00:39:59,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:00,911 INFO Connection check task start - -2025-09-26 00:40:00,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:00,912 INFO Out dated connection ,size=0 - -2025-09-26 00:40:00,912 INFO Connection check task end - -2025-09-26 00:40:02,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:03,912 INFO Connection check task start - -2025-09-26 00:40:03,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:03,912 INFO Out dated connection ,size=0 - -2025-09-26 00:40:03,912 INFO Connection check task end - -2025-09-26 00:40:05,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:06,913 INFO Connection check task start - -2025-09-26 00:40:06,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:06,913 INFO Out dated connection ,size=0 - -2025-09-26 00:40:06,913 INFO Connection check task end - -2025-09-26 00:40:08,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:09,913 INFO Connection check task start - -2025-09-26 00:40:09,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:09,913 INFO Out dated connection ,size=0 - -2025-09-26 00:40:09,913 INFO Connection check task end - -2025-09-26 00:40:11,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:12,914 INFO Connection check task start - -2025-09-26 00:40:12,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:12,914 INFO Out dated connection ,size=0 - -2025-09-26 00:40:12,914 INFO Connection check task end - -2025-09-26 00:40:14,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:15,914 INFO Connection check task start - -2025-09-26 00:40:15,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:15,915 INFO Out dated connection ,size=0 - -2025-09-26 00:40:15,915 INFO Connection check task end - -2025-09-26 00:40:17,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:18,916 INFO Connection check task start - -2025-09-26 00:40:18,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:18,916 INFO Out dated connection ,size=0 - -2025-09-26 00:40:18,917 INFO Connection check task end - -2025-09-26 00:40:20,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:21,917 INFO Connection check task start - -2025-09-26 00:40:21,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:21,917 INFO Out dated connection ,size=0 - -2025-09-26 00:40:21,917 INFO Connection check task end - -2025-09-26 00:40:23,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:24,918 INFO Connection check task start - -2025-09-26 00:40:24,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:24,918 INFO Out dated connection ,size=0 - -2025-09-26 00:40:24,918 INFO Connection check task end - -2025-09-26 00:40:26,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:27,919 INFO Connection check task start - -2025-09-26 00:40:27,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:27,919 INFO Out dated connection ,size=0 - -2025-09-26 00:40:27,919 INFO Connection check task end - -2025-09-26 00:40:29,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:30,920 INFO Connection check task start - -2025-09-26 00:40:30,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:30,920 INFO Out dated connection ,size=0 - -2025-09-26 00:40:30,920 INFO Connection check task end - -2025-09-26 00:40:32,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:33,921 INFO Connection check task start - -2025-09-26 00:40:33,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:33,921 INFO Out dated connection ,size=0 - -2025-09-26 00:40:33,921 INFO Connection check task end - -2025-09-26 00:40:35,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:36,922 INFO Connection check task start - -2025-09-26 00:40:36,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:36,922 INFO Out dated connection ,size=0 - -2025-09-26 00:40:36,922 INFO Connection check task end - -2025-09-26 00:40:38,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:39,922 INFO Connection check task start - -2025-09-26 00:40:39,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:39,923 INFO Out dated connection ,size=0 - -2025-09-26 00:40:39,923 INFO Connection check task end - -2025-09-26 00:40:41,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:42,923 INFO Connection check task start - -2025-09-26 00:40:42,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:42,923 INFO Out dated connection ,size=0 - -2025-09-26 00:40:42,923 INFO Connection check task end - -2025-09-26 00:40:44,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:45,923 INFO Connection check task start - -2025-09-26 00:40:45,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:45,924 INFO Out dated connection ,size=0 - -2025-09-26 00:40:45,924 INFO Connection check task end - -2025-09-26 00:40:47,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:48,924 INFO Connection check task start - -2025-09-26 00:40:48,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:48,924 INFO Out dated connection ,size=0 - -2025-09-26 00:40:48,924 INFO Connection check task end - -2025-09-26 00:40:50,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:51,925 INFO Connection check task start - -2025-09-26 00:40:51,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:51,925 INFO Out dated connection ,size=0 - -2025-09-26 00:40:51,925 INFO Connection check task end - -2025-09-26 00:40:53,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:54,925 INFO Connection check task start - -2025-09-26 00:40:54,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:54,925 INFO Out dated connection ,size=0 - -2025-09-26 00:40:54,926 INFO Connection check task end - -2025-09-26 00:40:56,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:40:57,926 INFO Connection check task start - -2025-09-26 00:40:57,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:40:57,927 INFO Out dated connection ,size=0 - -2025-09-26 00:40:57,927 INFO Connection check task end - -2025-09-26 00:40:59,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:00,927 INFO Connection check task start - -2025-09-26 00:41:00,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:00,927 INFO Out dated connection ,size=0 - -2025-09-26 00:41:00,927 INFO Connection check task end - -2025-09-26 00:41:02,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:03,928 INFO Connection check task start - -2025-09-26 00:41:03,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:03,928 INFO Out dated connection ,size=0 - -2025-09-26 00:41:03,928 INFO Connection check task end - -2025-09-26 00:41:05,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:06,929 INFO Connection check task start - -2025-09-26 00:41:06,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:06,929 INFO Out dated connection ,size=0 - -2025-09-26 00:41:06,929 INFO Connection check task end - -2025-09-26 00:41:08,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:09,930 INFO Connection check task start - -2025-09-26 00:41:09,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:09,930 INFO Out dated connection ,size=0 - -2025-09-26 00:41:09,930 INFO Connection check task end - -2025-09-26 00:41:11,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:12,931 INFO Connection check task start - -2025-09-26 00:41:12,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:12,931 INFO Out dated connection ,size=0 - -2025-09-26 00:41:12,931 INFO Connection check task end - -2025-09-26 00:41:14,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:15,931 INFO Connection check task start - -2025-09-26 00:41:15,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:15,932 INFO Out dated connection ,size=0 - -2025-09-26 00:41:15,932 INFO Connection check task end - -2025-09-26 00:41:17,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:18,932 INFO Connection check task start - -2025-09-26 00:41:18,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:18,933 INFO Out dated connection ,size=0 - -2025-09-26 00:41:18,933 INFO Connection check task end - -2025-09-26 00:41:20,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:21,933 INFO Connection check task start - -2025-09-26 00:41:21,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:21,934 INFO Out dated connection ,size=0 - -2025-09-26 00:41:21,934 INFO Connection check task end - -2025-09-26 00:41:23,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:24,934 INFO Connection check task start - -2025-09-26 00:41:24,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:24,934 INFO Out dated connection ,size=0 - -2025-09-26 00:41:24,934 INFO Connection check task end - -2025-09-26 00:41:26,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:27,935 INFO Connection check task start - -2025-09-26 00:41:27,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:27,935 INFO Out dated connection ,size=0 - -2025-09-26 00:41:27,935 INFO Connection check task end - -2025-09-26 00:41:29,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:30,935 INFO Connection check task start - -2025-09-26 00:41:30,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:30,936 INFO Out dated connection ,size=0 - -2025-09-26 00:41:30,936 INFO Connection check task end - -2025-09-26 00:41:32,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:33,937 INFO Connection check task start - -2025-09-26 00:41:33,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:33,937 INFO Out dated connection ,size=0 - -2025-09-26 00:41:33,937 INFO Connection check task end - -2025-09-26 00:41:35,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:36,938 INFO Connection check task start - -2025-09-26 00:41:36,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:36,939 INFO Out dated connection ,size=0 - -2025-09-26 00:41:36,939 INFO Connection check task end - -2025-09-26 00:41:38,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:39,939 INFO Connection check task start - -2025-09-26 00:41:39,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:39,940 INFO Out dated connection ,size=0 - -2025-09-26 00:41:39,940 INFO Connection check task end - -2025-09-26 00:41:41,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:42,941 INFO Connection check task start - -2025-09-26 00:41:42,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:42,941 INFO Out dated connection ,size=0 - -2025-09-26 00:41:42,941 INFO Connection check task end - -2025-09-26 00:41:44,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:45,941 INFO Connection check task start - -2025-09-26 00:41:45,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:45,942 INFO Out dated connection ,size=0 - -2025-09-26 00:41:45,942 INFO Connection check task end - -2025-09-26 00:41:47,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:48,942 INFO Connection check task start - -2025-09-26 00:41:48,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:48,942 INFO Out dated connection ,size=0 - -2025-09-26 00:41:48,942 INFO Connection check task end - -2025-09-26 00:41:50,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:51,943 INFO Connection check task start - -2025-09-26 00:41:51,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:51,943 INFO Out dated connection ,size=0 - -2025-09-26 00:41:51,943 INFO Connection check task end - -2025-09-26 00:41:53,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:54,943 INFO Connection check task start - -2025-09-26 00:41:54,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:54,944 INFO Out dated connection ,size=0 - -2025-09-26 00:41:54,944 INFO Connection check task end - -2025-09-26 00:41:56,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:41:57,944 INFO Connection check task start - -2025-09-26 00:41:57,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:41:57,944 INFO Out dated connection ,size=0 - -2025-09-26 00:41:57,944 INFO Connection check task end - -2025-09-26 00:41:59,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:00,945 INFO Connection check task start - -2025-09-26 00:42:00,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:00,945 INFO Out dated connection ,size=0 - -2025-09-26 00:42:00,945 INFO Connection check task end - -2025-09-26 00:42:02,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:03,946 INFO Connection check task start - -2025-09-26 00:42:03,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:03,946 INFO Out dated connection ,size=0 - -2025-09-26 00:42:03,946 INFO Connection check task end - -2025-09-26 00:42:05,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:06,947 INFO Connection check task start - -2025-09-26 00:42:06,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:06,947 INFO Out dated connection ,size=0 - -2025-09-26 00:42:06,947 INFO Connection check task end - -2025-09-26 00:42:08,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:09,947 INFO Connection check task start - -2025-09-26 00:42:09,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:09,948 INFO Out dated connection ,size=0 - -2025-09-26 00:42:09,948 INFO Connection check task end - -2025-09-26 00:42:11,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:12,948 INFO Connection check task start - -2025-09-26 00:42:12,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:12,948 INFO Out dated connection ,size=0 - -2025-09-26 00:42:12,948 INFO Connection check task end - -2025-09-26 00:42:14,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:15,949 INFO Connection check task start - -2025-09-26 00:42:15,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:15,949 INFO Out dated connection ,size=0 - -2025-09-26 00:42:15,949 INFO Connection check task end - -2025-09-26 00:42:17,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:18,950 INFO Connection check task start - -2025-09-26 00:42:18,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:18,950 INFO Out dated connection ,size=0 - -2025-09-26 00:42:18,950 INFO Connection check task end - -2025-09-26 00:42:20,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:21,950 INFO Connection check task start - -2025-09-26 00:42:21,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:21,950 INFO Out dated connection ,size=0 - -2025-09-26 00:42:21,950 INFO Connection check task end - -2025-09-26 00:42:23,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:24,951 INFO Connection check task start - -2025-09-26 00:42:24,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:24,951 INFO Out dated connection ,size=0 - -2025-09-26 00:42:24,951 INFO Connection check task end - -2025-09-26 00:42:26,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:27,951 INFO Connection check task start - -2025-09-26 00:42:27,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:27,952 INFO Out dated connection ,size=0 - -2025-09-26 00:42:27,952 INFO Connection check task end - -2025-09-26 00:42:29,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:30,953 INFO Connection check task start - -2025-09-26 00:42:30,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:30,953 INFO Out dated connection ,size=0 - -2025-09-26 00:42:30,953 INFO Connection check task end - -2025-09-26 00:42:32,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:33,953 INFO Connection check task start - -2025-09-26 00:42:33,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:33,953 INFO Out dated connection ,size=0 - -2025-09-26 00:42:33,953 INFO Connection check task end - -2025-09-26 00:42:35,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:36,954 INFO Connection check task start - -2025-09-26 00:42:36,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:36,954 INFO Out dated connection ,size=0 - -2025-09-26 00:42:36,954 INFO Connection check task end - -2025-09-26 00:42:38,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:39,954 INFO Connection check task start - -2025-09-26 00:42:39,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:39,954 INFO Out dated connection ,size=0 - -2025-09-26 00:42:39,954 INFO Connection check task end - -2025-09-26 00:42:41,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:42,955 INFO Connection check task start - -2025-09-26 00:42:42,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:42,955 INFO Out dated connection ,size=0 - -2025-09-26 00:42:42,955 INFO Connection check task end - -2025-09-26 00:42:44,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:45,955 INFO Connection check task start - -2025-09-26 00:42:45,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:45,956 INFO Out dated connection ,size=0 - -2025-09-26 00:42:45,956 INFO Connection check task end - -2025-09-26 00:42:47,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:48,956 INFO Connection check task start - -2025-09-26 00:42:48,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:48,956 INFO Out dated connection ,size=0 - -2025-09-26 00:42:48,956 INFO Connection check task end - -2025-09-26 00:42:50,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:51,957 INFO Connection check task start - -2025-09-26 00:42:51,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:51,957 INFO Out dated connection ,size=0 - -2025-09-26 00:42:51,957 INFO Connection check task end - -2025-09-26 00:42:53,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:54,958 INFO Connection check task start - -2025-09-26 00:42:54,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:54,958 INFO Out dated connection ,size=0 - -2025-09-26 00:42:54,958 INFO Connection check task end - -2025-09-26 00:42:56,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:42:57,959 INFO Connection check task start - -2025-09-26 00:42:57,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:42:57,959 INFO Out dated connection ,size=0 - -2025-09-26 00:42:57,959 INFO Connection check task end - -2025-09-26 00:42:59,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:00,959 INFO Connection check task start - -2025-09-26 00:43:00,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:00,960 INFO Out dated connection ,size=0 - -2025-09-26 00:43:00,960 INFO Connection check task end - -2025-09-26 00:43:02,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:03,960 INFO Connection check task start - -2025-09-26 00:43:03,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:03,960 INFO Out dated connection ,size=0 - -2025-09-26 00:43:03,960 INFO Connection check task end - -2025-09-26 00:43:05,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:06,961 INFO Connection check task start - -2025-09-26 00:43:06,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:06,961 INFO Out dated connection ,size=0 - -2025-09-26 00:43:06,961 INFO Connection check task end - -2025-09-26 00:43:08,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:09,961 INFO Connection check task start - -2025-09-26 00:43:09,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:09,961 INFO Out dated connection ,size=0 - -2025-09-26 00:43:09,962 INFO Connection check task end - -2025-09-26 00:43:11,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:12,962 INFO Connection check task start - -2025-09-26 00:43:12,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:12,962 INFO Out dated connection ,size=0 - -2025-09-26 00:43:12,962 INFO Connection check task end - -2025-09-26 00:43:14,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:15,964 INFO Connection check task start - -2025-09-26 00:43:15,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:15,964 INFO Out dated connection ,size=0 - -2025-09-26 00:43:15,964 INFO Connection check task end - -2025-09-26 00:43:17,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:18,965 INFO Connection check task start - -2025-09-26 00:43:18,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:18,965 INFO Out dated connection ,size=0 - -2025-09-26 00:43:18,966 INFO Connection check task end - -2025-09-26 00:43:20,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:21,966 INFO Connection check task start - -2025-09-26 00:43:21,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:21,966 INFO Out dated connection ,size=0 - -2025-09-26 00:43:21,966 INFO Connection check task end - -2025-09-26 00:43:23,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:24,967 INFO Connection check task start - -2025-09-26 00:43:24,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:24,967 INFO Out dated connection ,size=0 - -2025-09-26 00:43:24,967 INFO Connection check task end - -2025-09-26 00:43:26,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:27,968 INFO Connection check task start - -2025-09-26 00:43:27,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:27,968 INFO Out dated connection ,size=0 - -2025-09-26 00:43:27,968 INFO Connection check task end - -2025-09-26 00:43:29,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:30,969 INFO Connection check task start - -2025-09-26 00:43:30,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:30,969 INFO Out dated connection ,size=0 - -2025-09-26 00:43:30,969 INFO Connection check task end - -2025-09-26 00:43:32,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:33,969 INFO Connection check task start - -2025-09-26 00:43:33,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:33,969 INFO Out dated connection ,size=0 - -2025-09-26 00:43:33,970 INFO Connection check task end - -2025-09-26 00:43:35,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:36,970 INFO Connection check task start - -2025-09-26 00:43:36,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:36,970 INFO Out dated connection ,size=0 - -2025-09-26 00:43:36,970 INFO Connection check task end - -2025-09-26 00:43:38,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:39,970 INFO Connection check task start - -2025-09-26 00:43:39,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:39,970 INFO Out dated connection ,size=0 - -2025-09-26 00:43:39,970 INFO Connection check task end - -2025-09-26 00:43:41,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:42,971 INFO Connection check task start - -2025-09-26 00:43:42,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:42,971 INFO Out dated connection ,size=0 - -2025-09-26 00:43:42,971 INFO Connection check task end - -2025-09-26 00:43:44,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:45,972 INFO Connection check task start - -2025-09-26 00:43:45,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:45,972 INFO Out dated connection ,size=0 - -2025-09-26 00:43:45,972 INFO Connection check task end - -2025-09-26 00:43:47,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:48,973 INFO Connection check task start - -2025-09-26 00:43:48,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:48,973 INFO Out dated connection ,size=0 - -2025-09-26 00:43:48,973 INFO Connection check task end - -2025-09-26 00:43:50,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:51,973 INFO Connection check task start - -2025-09-26 00:43:51,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:51,973 INFO Out dated connection ,size=0 - -2025-09-26 00:43:51,973 INFO Connection check task end - -2025-09-26 00:43:53,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:54,975 INFO Connection check task start - -2025-09-26 00:43:54,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:54,975 INFO Out dated connection ,size=0 - -2025-09-26 00:43:54,975 INFO Connection check task end - -2025-09-26 00:43:56,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:43:57,976 INFO Connection check task start - -2025-09-26 00:43:57,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:43:57,977 INFO Out dated connection ,size=0 - -2025-09-26 00:43:57,977 INFO Connection check task end - -2025-09-26 00:43:59,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:00,977 INFO Connection check task start - -2025-09-26 00:44:00,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:00,977 INFO Out dated connection ,size=0 - -2025-09-26 00:44:00,978 INFO Connection check task end - -2025-09-26 00:44:02,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:03,978 INFO Connection check task start - -2025-09-26 00:44:03,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:03,978 INFO Out dated connection ,size=0 - -2025-09-26 00:44:03,979 INFO Connection check task end - -2025-09-26 00:44:05,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:06,979 INFO Connection check task start - -2025-09-26 00:44:06,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:06,979 INFO Out dated connection ,size=0 - -2025-09-26 00:44:06,979 INFO Connection check task end - -2025-09-26 00:44:08,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:09,979 INFO Connection check task start - -2025-09-26 00:44:09,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:09,980 INFO Out dated connection ,size=0 - -2025-09-26 00:44:09,980 INFO Connection check task end - -2025-09-26 00:44:11,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:12,980 INFO Connection check task start - -2025-09-26 00:44:12,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:12,980 INFO Out dated connection ,size=0 - -2025-09-26 00:44:12,980 INFO Connection check task end - -2025-09-26 00:44:14,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:15,981 INFO Connection check task start - -2025-09-26 00:44:15,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:15,981 INFO Out dated connection ,size=0 - -2025-09-26 00:44:15,981 INFO Connection check task end - -2025-09-26 00:44:17,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:18,982 INFO Connection check task start - -2025-09-26 00:44:18,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:18,982 INFO Out dated connection ,size=0 - -2025-09-26 00:44:18,982 INFO Connection check task end - -2025-09-26 00:44:20,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:21,982 INFO Connection check task start - -2025-09-26 00:44:21,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:21,982 INFO Out dated connection ,size=0 - -2025-09-26 00:44:21,982 INFO Connection check task end - -2025-09-26 00:44:23,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:24,983 INFO Connection check task start - -2025-09-26 00:44:24,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:24,983 INFO Out dated connection ,size=0 - -2025-09-26 00:44:24,983 INFO Connection check task end - -2025-09-26 00:44:26,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:27,984 INFO Connection check task start - -2025-09-26 00:44:27,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:27,984 INFO Out dated connection ,size=0 - -2025-09-26 00:44:27,984 INFO Connection check task end - -2025-09-26 00:44:29,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:30,984 INFO Connection check task start - -2025-09-26 00:44:30,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:30,985 INFO Out dated connection ,size=0 - -2025-09-26 00:44:30,985 INFO Connection check task end - -2025-09-26 00:44:32,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:33,985 INFO Connection check task start - -2025-09-26 00:44:33,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:33,985 INFO Out dated connection ,size=0 - -2025-09-26 00:44:33,985 INFO Connection check task end - -2025-09-26 00:44:35,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:36,986 INFO Connection check task start - -2025-09-26 00:44:36,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:36,986 INFO Out dated connection ,size=0 - -2025-09-26 00:44:36,986 INFO Connection check task end - -2025-09-26 00:44:38,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:39,987 INFO Connection check task start - -2025-09-26 00:44:39,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:39,987 INFO Out dated connection ,size=0 - -2025-09-26 00:44:39,987 INFO Connection check task end - -2025-09-26 00:44:41,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:42,988 INFO Connection check task start - -2025-09-26 00:44:42,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:42,988 INFO Out dated connection ,size=0 - -2025-09-26 00:44:42,988 INFO Connection check task end - -2025-09-26 00:44:44,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:45,989 INFO Connection check task start - -2025-09-26 00:44:45,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:45,989 INFO Out dated connection ,size=0 - -2025-09-26 00:44:45,989 INFO Connection check task end - -2025-09-26 00:44:47,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:48,989 INFO Connection check task start - -2025-09-26 00:44:48,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:48,990 INFO Out dated connection ,size=0 - -2025-09-26 00:44:48,990 INFO Connection check task end - -2025-09-26 00:44:50,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:51,991 INFO Connection check task start - -2025-09-26 00:44:51,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:51,991 INFO Out dated connection ,size=0 - -2025-09-26 00:44:51,991 INFO Connection check task end - -2025-09-26 00:44:53,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:54,991 INFO Connection check task start - -2025-09-26 00:44:54,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:54,991 INFO Out dated connection ,size=0 - -2025-09-26 00:44:54,992 INFO Connection check task end - -2025-09-26 00:44:56,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:44:57,992 INFO Connection check task start - -2025-09-26 00:44:57,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:44:57,992 INFO Out dated connection ,size=0 - -2025-09-26 00:44:57,992 INFO Connection check task end - -2025-09-26 00:44:59,435 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:00,993 INFO Connection check task start - -2025-09-26 00:45:00,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:00,993 INFO Out dated connection ,size=0 - -2025-09-26 00:45:00,993 INFO Connection check task end - -2025-09-26 00:45:02,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:03,993 INFO Connection check task start - -2025-09-26 00:45:03,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:03,993 INFO Out dated connection ,size=0 - -2025-09-26 00:45:03,993 INFO Connection check task end - -2025-09-26 00:45:05,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:06,994 INFO Connection check task start - -2025-09-26 00:45:06,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:06,994 INFO Out dated connection ,size=0 - -2025-09-26 00:45:06,994 INFO Connection check task end - -2025-09-26 00:45:08,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:09,995 INFO Connection check task start - -2025-09-26 00:45:09,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:09,995 INFO Out dated connection ,size=0 - -2025-09-26 00:45:09,995 INFO Connection check task end - -2025-09-26 00:45:11,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:12,995 INFO Connection check task start - -2025-09-26 00:45:12,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:12,995 INFO Out dated connection ,size=0 - -2025-09-26 00:45:12,995 INFO Connection check task end - -2025-09-26 00:45:14,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:15,996 INFO Connection check task start - -2025-09-26 00:45:15,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:15,996 INFO Out dated connection ,size=0 - -2025-09-26 00:45:15,996 INFO Connection check task end - -2025-09-26 00:45:17,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:18,996 INFO Connection check task start - -2025-09-26 00:45:18,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:18,997 INFO Out dated connection ,size=0 - -2025-09-26 00:45:18,997 INFO Connection check task end - -2025-09-26 00:45:20,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:21,997 INFO Connection check task start - -2025-09-26 00:45:21,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:21,998 INFO Out dated connection ,size=0 - -2025-09-26 00:45:21,998 INFO Connection check task end - -2025-09-26 00:45:23,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:24,998 INFO Connection check task start - -2025-09-26 00:45:24,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:24,998 INFO Out dated connection ,size=0 - -2025-09-26 00:45:24,998 INFO Connection check task end - -2025-09-26 00:45:26,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:27,999 INFO Connection check task start - -2025-09-26 00:45:27,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:27,999 INFO Out dated connection ,size=0 - -2025-09-26 00:45:27,999 INFO Connection check task end - -2025-09-26 00:45:29,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:31,000 INFO Connection check task start - -2025-09-26 00:45:31,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:31,000 INFO Out dated connection ,size=0 - -2025-09-26 00:45:31,000 INFO Connection check task end - -2025-09-26 00:45:32,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:34,000 INFO Connection check task start - -2025-09-26 00:45:34,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:34,000 INFO Out dated connection ,size=0 - -2025-09-26 00:45:34,001 INFO Connection check task end - -2025-09-26 00:45:35,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:37,001 INFO Connection check task start - -2025-09-26 00:45:37,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:37,001 INFO Out dated connection ,size=0 - -2025-09-26 00:45:37,001 INFO Connection check task end - -2025-09-26 00:45:38,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:40,001 INFO Connection check task start - -2025-09-26 00:45:40,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:40,001 INFO Out dated connection ,size=0 - -2025-09-26 00:45:40,001 INFO Connection check task end - -2025-09-26 00:45:41,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:43,002 INFO Connection check task start - -2025-09-26 00:45:43,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:43,003 INFO Out dated connection ,size=0 - -2025-09-26 00:45:43,003 INFO Connection check task end - -2025-09-26 00:45:44,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:46,004 INFO Connection check task start - -2025-09-26 00:45:46,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:46,004 INFO Out dated connection ,size=0 - -2025-09-26 00:45:46,004 INFO Connection check task end - -2025-09-26 00:45:47,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:49,005 INFO Connection check task start - -2025-09-26 00:45:49,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:49,006 INFO Out dated connection ,size=0 - -2025-09-26 00:45:49,006 INFO Connection check task end - -2025-09-26 00:45:50,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:52,007 INFO Connection check task start - -2025-09-26 00:45:52,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:52,007 INFO Out dated connection ,size=0 - -2025-09-26 00:45:52,007 INFO Connection check task end - -2025-09-26 00:45:53,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:55,007 INFO Connection check task start - -2025-09-26 00:45:55,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:55,008 INFO Out dated connection ,size=0 - -2025-09-26 00:45:55,008 INFO Connection check task end - -2025-09-26 00:45:56,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:45:58,008 INFO Connection check task start - -2025-09-26 00:45:58,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:45:58,009 INFO Out dated connection ,size=0 - -2025-09-26 00:45:58,009 INFO Connection check task end - -2025-09-26 00:45:59,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:01,009 INFO Connection check task start - -2025-09-26 00:46:01,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:01,009 INFO Out dated connection ,size=0 - -2025-09-26 00:46:01,009 INFO Connection check task end - -2025-09-26 00:46:02,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:04,010 INFO Connection check task start - -2025-09-26 00:46:04,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:04,010 INFO Out dated connection ,size=0 - -2025-09-26 00:46:04,010 INFO Connection check task end - -2025-09-26 00:46:05,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:07,011 INFO Connection check task start - -2025-09-26 00:46:07,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:07,011 INFO Out dated connection ,size=0 - -2025-09-26 00:46:07,011 INFO Connection check task end - -2025-09-26 00:46:08,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:10,011 INFO Connection check task start - -2025-09-26 00:46:10,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:10,011 INFO Out dated connection ,size=0 - -2025-09-26 00:46:10,011 INFO Connection check task end - -2025-09-26 00:46:11,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:13,012 INFO Connection check task start - -2025-09-26 00:46:13,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:13,012 INFO Out dated connection ,size=0 - -2025-09-26 00:46:13,012 INFO Connection check task end - -2025-09-26 00:46:14,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:16,013 INFO Connection check task start - -2025-09-26 00:46:16,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:16,013 INFO Out dated connection ,size=0 - -2025-09-26 00:46:16,013 INFO Connection check task end - -2025-09-26 00:46:17,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:19,014 INFO Connection check task start - -2025-09-26 00:46:19,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:19,022 INFO Out dated connection ,size=0 - -2025-09-26 00:46:19,022 INFO Connection check task end - -2025-09-26 00:46:20,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:22,023 INFO Connection check task start - -2025-09-26 00:46:22,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:22,023 INFO Out dated connection ,size=0 - -2025-09-26 00:46:22,023 INFO Connection check task end - -2025-09-26 00:46:23,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:25,024 INFO Connection check task start - -2025-09-26 00:46:25,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:25,024 INFO Out dated connection ,size=0 - -2025-09-26 00:46:25,024 INFO Connection check task end - -2025-09-26 00:46:26,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:28,025 INFO Connection check task start - -2025-09-26 00:46:28,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:28,025 INFO Out dated connection ,size=0 - -2025-09-26 00:46:28,025 INFO Connection check task end - -2025-09-26 00:46:29,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:31,026 INFO Connection check task start - -2025-09-26 00:46:31,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:31,026 INFO Out dated connection ,size=0 - -2025-09-26 00:46:31,026 INFO Connection check task end - -2025-09-26 00:46:32,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:34,026 INFO Connection check task start - -2025-09-26 00:46:34,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:34,027 INFO Out dated connection ,size=0 - -2025-09-26 00:46:34,027 INFO Connection check task end - -2025-09-26 00:46:35,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:37,027 INFO Connection check task start - -2025-09-26 00:46:37,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:37,027 INFO Out dated connection ,size=0 - -2025-09-26 00:46:37,027 INFO Connection check task end - -2025-09-26 00:46:38,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:40,027 INFO Connection check task start - -2025-09-26 00:46:40,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:40,028 INFO Out dated connection ,size=0 - -2025-09-26 00:46:40,028 INFO Connection check task end - -2025-09-26 00:46:41,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:43,028 INFO Connection check task start - -2025-09-26 00:46:43,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:43,028 INFO Out dated connection ,size=0 - -2025-09-26 00:46:43,028 INFO Connection check task end - -2025-09-26 00:46:44,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:46,029 INFO Connection check task start - -2025-09-26 00:46:46,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:46,029 INFO Out dated connection ,size=0 - -2025-09-26 00:46:46,029 INFO Connection check task end - -2025-09-26 00:46:47,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:49,031 INFO Connection check task start - -2025-09-26 00:46:49,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:49,031 INFO Out dated connection ,size=0 - -2025-09-26 00:46:49,031 INFO Connection check task end - -2025-09-26 00:46:50,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:52,032 INFO Connection check task start - -2025-09-26 00:46:52,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:52,032 INFO Out dated connection ,size=0 - -2025-09-26 00:46:52,032 INFO Connection check task end - -2025-09-26 00:46:53,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:55,033 INFO Connection check task start - -2025-09-26 00:46:55,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:55,033 INFO Out dated connection ,size=0 - -2025-09-26 00:46:55,033 INFO Connection check task end - -2025-09-26 00:46:56,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:46:58,034 INFO Connection check task start - -2025-09-26 00:46:58,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:46:58,037 INFO Out dated connection ,size=0 - -2025-09-26 00:46:58,037 INFO Connection check task end - -2025-09-26 00:46:59,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:01,037 INFO Connection check task start - -2025-09-26 00:47:01,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:01,038 INFO Out dated connection ,size=0 - -2025-09-26 00:47:01,038 INFO Connection check task end - -2025-09-26 00:47:02,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:04,039 INFO Connection check task start - -2025-09-26 00:47:04,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:04,039 INFO Out dated connection ,size=0 - -2025-09-26 00:47:04,039 INFO Connection check task end - -2025-09-26 00:47:05,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:07,040 INFO Connection check task start - -2025-09-26 00:47:07,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:07,040 INFO Out dated connection ,size=0 - -2025-09-26 00:47:07,040 INFO Connection check task end - -2025-09-26 00:47:08,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:10,040 INFO Connection check task start - -2025-09-26 00:47:10,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:10,041 INFO Out dated connection ,size=0 - -2025-09-26 00:47:10,041 INFO Connection check task end - -2025-09-26 00:47:11,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:13,041 INFO Connection check task start - -2025-09-26 00:47:13,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:13,041 INFO Out dated connection ,size=0 - -2025-09-26 00:47:13,041 INFO Connection check task end - -2025-09-26 00:47:14,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:16,042 INFO Connection check task start - -2025-09-26 00:47:16,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:16,043 INFO Out dated connection ,size=0 - -2025-09-26 00:47:16,043 INFO Connection check task end - -2025-09-26 00:47:17,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:19,043 INFO Connection check task start - -2025-09-26 00:47:19,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:19,044 INFO Out dated connection ,size=0 - -2025-09-26 00:47:19,044 INFO Connection check task end - -2025-09-26 00:47:20,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:22,044 INFO Connection check task start - -2025-09-26 00:47:22,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:22,044 INFO Out dated connection ,size=0 - -2025-09-26 00:47:22,044 INFO Connection check task end - -2025-09-26 00:47:23,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:25,045 INFO Connection check task start - -2025-09-26 00:47:25,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:25,046 INFO Out dated connection ,size=0 - -2025-09-26 00:47:25,046 INFO Connection check task end - -2025-09-26 00:47:26,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:28,046 INFO Connection check task start - -2025-09-26 00:47:28,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:28,046 INFO Out dated connection ,size=0 - -2025-09-26 00:47:28,046 INFO Connection check task end - -2025-09-26 00:47:29,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:31,047 INFO Connection check task start - -2025-09-26 00:47:31,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:31,047 INFO Out dated connection ,size=0 - -2025-09-26 00:47:31,047 INFO Connection check task end - -2025-09-26 00:47:32,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:34,048 INFO Connection check task start - -2025-09-26 00:47:34,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:34,048 INFO Out dated connection ,size=0 - -2025-09-26 00:47:34,048 INFO Connection check task end - -2025-09-26 00:47:35,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:37,048 INFO Connection check task start - -2025-09-26 00:47:37,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:37,048 INFO Out dated connection ,size=0 - -2025-09-26 00:47:37,048 INFO Connection check task end - -2025-09-26 00:47:38,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:40,048 INFO Connection check task start - -2025-09-26 00:47:40,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:40,049 INFO Out dated connection ,size=0 - -2025-09-26 00:47:40,049 INFO Connection check task end - -2025-09-26 00:47:41,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:43,049 INFO Connection check task start - -2025-09-26 00:47:43,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:43,049 INFO Out dated connection ,size=0 - -2025-09-26 00:47:43,049 INFO Connection check task end - -2025-09-26 00:47:44,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:46,050 INFO Connection check task start - -2025-09-26 00:47:46,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:46,050 INFO Out dated connection ,size=0 - -2025-09-26 00:47:46,050 INFO Connection check task end - -2025-09-26 00:47:47,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:49,051 INFO Connection check task start - -2025-09-26 00:47:49,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:49,051 INFO Out dated connection ,size=0 - -2025-09-26 00:47:49,051 INFO Connection check task end - -2025-09-26 00:47:50,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:52,052 INFO Connection check task start - -2025-09-26 00:47:52,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:52,052 INFO Out dated connection ,size=0 - -2025-09-26 00:47:52,052 INFO Connection check task end - -2025-09-26 00:47:53,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:55,053 INFO Connection check task start - -2025-09-26 00:47:55,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:55,053 INFO Out dated connection ,size=0 - -2025-09-26 00:47:55,053 INFO Connection check task end - -2025-09-26 00:47:56,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:47:58,054 INFO Connection check task start - -2025-09-26 00:47:58,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:47:58,055 INFO Out dated connection ,size=0 - -2025-09-26 00:47:58,055 INFO Connection check task end - -2025-09-26 00:47:59,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:01,055 INFO Connection check task start - -2025-09-26 00:48:01,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:01,055 INFO Out dated connection ,size=0 - -2025-09-26 00:48:01,055 INFO Connection check task end - -2025-09-26 00:48:02,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:04,056 INFO Connection check task start - -2025-09-26 00:48:04,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:04,057 INFO Out dated connection ,size=0 - -2025-09-26 00:48:04,057 INFO Connection check task end - -2025-09-26 00:48:05,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:07,057 INFO Connection check task start - -2025-09-26 00:48:07,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:07,058 INFO Out dated connection ,size=0 - -2025-09-26 00:48:07,058 INFO Connection check task end - -2025-09-26 00:48:08,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:10,058 INFO Connection check task start - -2025-09-26 00:48:10,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:10,058 INFO Out dated connection ,size=0 - -2025-09-26 00:48:10,058 INFO Connection check task end - -2025-09-26 00:48:11,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:13,059 INFO Connection check task start - -2025-09-26 00:48:13,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:13,059 INFO Out dated connection ,size=0 - -2025-09-26 00:48:13,059 INFO Connection check task end - -2025-09-26 00:48:14,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:16,060 INFO Connection check task start - -2025-09-26 00:48:16,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:16,060 INFO Out dated connection ,size=0 - -2025-09-26 00:48:16,060 INFO Connection check task end - -2025-09-26 00:48:17,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:19,060 INFO Connection check task start - -2025-09-26 00:48:19,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:19,061 INFO Out dated connection ,size=0 - -2025-09-26 00:48:19,061 INFO Connection check task end - -2025-09-26 00:48:20,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:22,062 INFO Connection check task start - -2025-09-26 00:48:22,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:22,062 INFO Out dated connection ,size=0 - -2025-09-26 00:48:22,062 INFO Connection check task end - -2025-09-26 00:48:23,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:25,062 INFO Connection check task start - -2025-09-26 00:48:25,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:25,062 INFO Out dated connection ,size=0 - -2025-09-26 00:48:25,062 INFO Connection check task end - -2025-09-26 00:48:26,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:28,063 INFO Connection check task start - -2025-09-26 00:48:28,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:28,063 INFO Out dated connection ,size=0 - -2025-09-26 00:48:28,064 INFO Connection check task end - -2025-09-26 00:48:29,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:31,065 INFO Connection check task start - -2025-09-26 00:48:31,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:31,065 INFO Out dated connection ,size=0 - -2025-09-26 00:48:31,065 INFO Connection check task end - -2025-09-26 00:48:32,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:34,066 INFO Connection check task start - -2025-09-26 00:48:34,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:34,066 INFO Out dated connection ,size=0 - -2025-09-26 00:48:34,066 INFO Connection check task end - -2025-09-26 00:48:35,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:37,067 INFO Connection check task start - -2025-09-26 00:48:37,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:37,067 INFO Out dated connection ,size=0 - -2025-09-26 00:48:37,067 INFO Connection check task end - -2025-09-26 00:48:38,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:40,067 INFO Connection check task start - -2025-09-26 00:48:40,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:40,068 INFO Out dated connection ,size=0 - -2025-09-26 00:48:40,068 INFO Connection check task end - -2025-09-26 00:48:41,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:43,068 INFO Connection check task start - -2025-09-26 00:48:43,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:43,068 INFO Out dated connection ,size=0 - -2025-09-26 00:48:43,068 INFO Connection check task end - -2025-09-26 00:48:44,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:46,069 INFO Connection check task start - -2025-09-26 00:48:46,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:46,069 INFO Out dated connection ,size=0 - -2025-09-26 00:48:46,069 INFO Connection check task end - -2025-09-26 00:48:47,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:49,069 INFO Connection check task start - -2025-09-26 00:48:49,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:49,070 INFO Out dated connection ,size=0 - -2025-09-26 00:48:49,070 INFO Connection check task end - -2025-09-26 00:48:50,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:52,071 INFO Connection check task start - -2025-09-26 00:48:52,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:52,071 INFO Out dated connection ,size=0 - -2025-09-26 00:48:52,071 INFO Connection check task end - -2025-09-26 00:48:53,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:55,072 INFO Connection check task start - -2025-09-26 00:48:55,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:55,074 INFO Out dated connection ,size=0 - -2025-09-26 00:48:55,074 INFO Connection check task end - -2025-09-26 00:48:56,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:48:58,074 INFO Connection check task start - -2025-09-26 00:48:58,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:48:58,074 INFO Out dated connection ,size=0 - -2025-09-26 00:48:58,074 INFO Connection check task end - -2025-09-26 00:48:59,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:01,075 INFO Connection check task start - -2025-09-26 00:49:01,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:01,075 INFO Out dated connection ,size=0 - -2025-09-26 00:49:01,075 INFO Connection check task end - -2025-09-26 00:49:02,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:04,075 INFO Connection check task start - -2025-09-26 00:49:04,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:04,076 INFO Out dated connection ,size=0 - -2025-09-26 00:49:04,076 INFO Connection check task end - -2025-09-26 00:49:05,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:07,077 INFO Connection check task start - -2025-09-26 00:49:07,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:07,077 INFO Out dated connection ,size=0 - -2025-09-26 00:49:07,077 INFO Connection check task end - -2025-09-26 00:49:08,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:10,077 INFO Connection check task start - -2025-09-26 00:49:10,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:10,078 INFO Out dated connection ,size=0 - -2025-09-26 00:49:10,078 INFO Connection check task end - -2025-09-26 00:49:11,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:13,079 INFO Connection check task start - -2025-09-26 00:49:13,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:13,079 INFO Out dated connection ,size=0 - -2025-09-26 00:49:13,079 INFO Connection check task end - -2025-09-26 00:49:14,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:16,079 INFO Connection check task start - -2025-09-26 00:49:16,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:16,080 INFO Out dated connection ,size=0 - -2025-09-26 00:49:16,080 INFO Connection check task end - -2025-09-26 00:49:17,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:19,080 INFO Connection check task start - -2025-09-26 00:49:19,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:19,081 INFO Out dated connection ,size=0 - -2025-09-26 00:49:19,081 INFO Connection check task end - -2025-09-26 00:49:20,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:22,082 INFO Connection check task start - -2025-09-26 00:49:22,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:22,082 INFO Out dated connection ,size=0 - -2025-09-26 00:49:22,082 INFO Connection check task end - -2025-09-26 00:49:23,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:25,083 INFO Connection check task start - -2025-09-26 00:49:25,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:25,083 INFO Out dated connection ,size=0 - -2025-09-26 00:49:25,083 INFO Connection check task end - -2025-09-26 00:49:26,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:28,084 INFO Connection check task start - -2025-09-26 00:49:28,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:28,084 INFO Out dated connection ,size=0 - -2025-09-26 00:49:28,084 INFO Connection check task end - -2025-09-26 00:49:29,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:31,085 INFO Connection check task start - -2025-09-26 00:49:31,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:31,085 INFO Out dated connection ,size=0 - -2025-09-26 00:49:31,085 INFO Connection check task end - -2025-09-26 00:49:32,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:34,086 INFO Connection check task start - -2025-09-26 00:49:34,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:34,087 INFO Out dated connection ,size=0 - -2025-09-26 00:49:34,087 INFO Connection check task end - -2025-09-26 00:49:35,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:37,087 INFO Connection check task start - -2025-09-26 00:49:37,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:37,087 INFO Out dated connection ,size=0 - -2025-09-26 00:49:37,087 INFO Connection check task end - -2025-09-26 00:49:38,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:40,088 INFO Connection check task start - -2025-09-26 00:49:40,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:40,088 INFO Out dated connection ,size=0 - -2025-09-26 00:49:40,088 INFO Connection check task end - -2025-09-26 00:49:41,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:43,089 INFO Connection check task start - -2025-09-26 00:49:43,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:43,089 INFO Out dated connection ,size=0 - -2025-09-26 00:49:43,089 INFO Connection check task end - -2025-09-26 00:49:44,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:46,090 INFO Connection check task start - -2025-09-26 00:49:46,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:46,090 INFO Out dated connection ,size=0 - -2025-09-26 00:49:46,090 INFO Connection check task end - -2025-09-26 00:49:47,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:49,091 INFO Connection check task start - -2025-09-26 00:49:49,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:49,092 INFO Out dated connection ,size=0 - -2025-09-26 00:49:49,092 INFO Connection check task end - -2025-09-26 00:49:50,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:52,092 INFO Connection check task start - -2025-09-26 00:49:52,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:52,092 INFO Out dated connection ,size=0 - -2025-09-26 00:49:52,092 INFO Connection check task end - -2025-09-26 00:49:53,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:55,092 INFO Connection check task start - -2025-09-26 00:49:55,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:55,096 INFO Out dated connection ,size=0 - -2025-09-26 00:49:55,096 INFO Connection check task end - -2025-09-26 00:49:56,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:49:58,097 INFO Connection check task start - -2025-09-26 00:49:58,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:49:58,097 INFO Out dated connection ,size=0 - -2025-09-26 00:49:58,097 INFO Connection check task end - -2025-09-26 00:49:59,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:01,097 INFO Connection check task start - -2025-09-26 00:50:01,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:01,097 INFO Out dated connection ,size=0 - -2025-09-26 00:50:01,097 INFO Connection check task end - -2025-09-26 00:50:02,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:04,098 INFO Connection check task start - -2025-09-26 00:50:04,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:04,099 INFO Out dated connection ,size=0 - -2025-09-26 00:50:04,099 INFO Connection check task end - -2025-09-26 00:50:05,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:07,099 INFO Connection check task start - -2025-09-26 00:50:07,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:07,099 INFO Out dated connection ,size=0 - -2025-09-26 00:50:07,099 INFO Connection check task end - -2025-09-26 00:50:08,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:10,100 INFO Connection check task start - -2025-09-26 00:50:10,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:10,101 INFO Out dated connection ,size=0 - -2025-09-26 00:50:10,101 INFO Connection check task end - -2025-09-26 00:50:11,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:13,102 INFO Connection check task start - -2025-09-26 00:50:13,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:13,102 INFO Out dated connection ,size=0 - -2025-09-26 00:50:13,102 INFO Connection check task end - -2025-09-26 00:50:14,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:16,102 INFO Connection check task start - -2025-09-26 00:50:16,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:16,102 INFO Out dated connection ,size=0 - -2025-09-26 00:50:16,103 INFO Connection check task end - -2025-09-26 00:50:17,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:19,103 INFO Connection check task start - -2025-09-26 00:50:19,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:19,104 INFO Out dated connection ,size=0 - -2025-09-26 00:50:19,104 INFO Connection check task end - -2025-09-26 00:50:20,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:22,105 INFO Connection check task start - -2025-09-26 00:50:22,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:22,106 INFO Out dated connection ,size=0 - -2025-09-26 00:50:22,106 INFO Connection check task end - -2025-09-26 00:50:23,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:25,106 INFO Connection check task start - -2025-09-26 00:50:25,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:25,106 INFO Out dated connection ,size=0 - -2025-09-26 00:50:25,106 INFO Connection check task end - -2025-09-26 00:50:26,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:28,107 INFO Connection check task start - -2025-09-26 00:50:28,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:28,107 INFO Out dated connection ,size=0 - -2025-09-26 00:50:28,107 INFO Connection check task end - -2025-09-26 00:50:29,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:31,108 INFO Connection check task start - -2025-09-26 00:50:31,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:31,108 INFO Out dated connection ,size=0 - -2025-09-26 00:50:31,108 INFO Connection check task end - -2025-09-26 00:50:32,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:34,109 INFO Connection check task start - -2025-09-26 00:50:34,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:34,110 INFO Out dated connection ,size=0 - -2025-09-26 00:50:34,110 INFO Connection check task end - -2025-09-26 00:50:35,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:37,110 INFO Connection check task start - -2025-09-26 00:50:37,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:37,110 INFO Out dated connection ,size=0 - -2025-09-26 00:50:37,110 INFO Connection check task end - -2025-09-26 00:50:38,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:40,111 INFO Connection check task start - -2025-09-26 00:50:40,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:40,112 INFO Out dated connection ,size=0 - -2025-09-26 00:50:40,112 INFO Connection check task end - -2025-09-26 00:50:41,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:43,112 INFO Connection check task start - -2025-09-26 00:50:43,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:43,112 INFO Out dated connection ,size=0 - -2025-09-26 00:50:43,112 INFO Connection check task end - -2025-09-26 00:50:44,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:46,112 INFO Connection check task start - -2025-09-26 00:50:46,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:46,112 INFO Out dated connection ,size=0 - -2025-09-26 00:50:46,113 INFO Connection check task end - -2025-09-26 00:50:47,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:49,114 INFO Connection check task start - -2025-09-26 00:50:49,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:49,114 INFO Out dated connection ,size=0 - -2025-09-26 00:50:49,114 INFO Connection check task end - -2025-09-26 00:50:50,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:52,114 INFO Connection check task start - -2025-09-26 00:50:52,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:52,114 INFO Out dated connection ,size=0 - -2025-09-26 00:50:52,114 INFO Connection check task end - -2025-09-26 00:50:53,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:55,115 INFO Connection check task start - -2025-09-26 00:50:55,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:55,116 INFO Out dated connection ,size=0 - -2025-09-26 00:50:55,116 INFO Connection check task end - -2025-09-26 00:50:56,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:50:58,116 INFO Connection check task start - -2025-09-26 00:50:58,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:50:58,117 INFO Out dated connection ,size=0 - -2025-09-26 00:50:58,117 INFO Connection check task end - -2025-09-26 00:50:59,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:01,118 INFO Connection check task start - -2025-09-26 00:51:01,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:01,118 INFO Out dated connection ,size=0 - -2025-09-26 00:51:01,118 INFO Connection check task end - -2025-09-26 00:51:02,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:04,119 INFO Connection check task start - -2025-09-26 00:51:04,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:04,119 INFO Out dated connection ,size=0 - -2025-09-26 00:51:04,119 INFO Connection check task end - -2025-09-26 00:51:05,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:07,120 INFO Connection check task start - -2025-09-26 00:51:07,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:07,120 INFO Out dated connection ,size=0 - -2025-09-26 00:51:07,120 INFO Connection check task end - -2025-09-26 00:51:08,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:10,121 INFO Connection check task start - -2025-09-26 00:51:10,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:10,121 INFO Out dated connection ,size=0 - -2025-09-26 00:51:10,121 INFO Connection check task end - -2025-09-26 00:51:11,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:13,122 INFO Connection check task start - -2025-09-26 00:51:13,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:13,122 INFO Out dated connection ,size=0 - -2025-09-26 00:51:13,122 INFO Connection check task end - -2025-09-26 00:51:14,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:16,123 INFO Connection check task start - -2025-09-26 00:51:16,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:16,123 INFO Out dated connection ,size=0 - -2025-09-26 00:51:16,123 INFO Connection check task end - -2025-09-26 00:51:17,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:19,124 INFO Connection check task start - -2025-09-26 00:51:19,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:19,125 INFO Out dated connection ,size=0 - -2025-09-26 00:51:19,125 INFO Connection check task end - -2025-09-26 00:51:20,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:22,126 INFO Connection check task start - -2025-09-26 00:51:22,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:22,126 INFO Out dated connection ,size=0 - -2025-09-26 00:51:22,126 INFO Connection check task end - -2025-09-26 00:51:23,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:25,126 INFO Connection check task start - -2025-09-26 00:51:25,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:25,126 INFO Out dated connection ,size=0 - -2025-09-26 00:51:25,126 INFO Connection check task end - -2025-09-26 00:51:26,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:28,127 INFO Connection check task start - -2025-09-26 00:51:28,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:28,128 INFO Out dated connection ,size=0 - -2025-09-26 00:51:28,128 INFO Connection check task end - -2025-09-26 00:51:29,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:31,128 INFO Connection check task start - -2025-09-26 00:51:31,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:31,128 INFO Out dated connection ,size=0 - -2025-09-26 00:51:31,128 INFO Connection check task end - -2025-09-26 00:51:32,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:34,129 INFO Connection check task start - -2025-09-26 00:51:34,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:34,129 INFO Out dated connection ,size=0 - -2025-09-26 00:51:34,130 INFO Connection check task end - -2025-09-26 00:51:35,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:37,130 INFO Connection check task start - -2025-09-26 00:51:37,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:37,131 INFO Out dated connection ,size=0 - -2025-09-26 00:51:37,131 INFO Connection check task end - -2025-09-26 00:51:38,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:40,132 INFO Connection check task start - -2025-09-26 00:51:40,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:40,132 INFO Out dated connection ,size=0 - -2025-09-26 00:51:40,132 INFO Connection check task end - -2025-09-26 00:51:41,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:43,132 INFO Connection check task start - -2025-09-26 00:51:43,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:43,132 INFO Out dated connection ,size=0 - -2025-09-26 00:51:43,132 INFO Connection check task end - -2025-09-26 00:51:44,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:46,132 INFO Connection check task start - -2025-09-26 00:51:46,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:46,132 INFO Out dated connection ,size=0 - -2025-09-26 00:51:46,132 INFO Connection check task end - -2025-09-26 00:51:47,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:49,133 INFO Connection check task start - -2025-09-26 00:51:49,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:49,133 INFO Out dated connection ,size=0 - -2025-09-26 00:51:49,133 INFO Connection check task end - -2025-09-26 00:51:50,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:52,133 INFO Connection check task start - -2025-09-26 00:51:52,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:52,133 INFO Out dated connection ,size=0 - -2025-09-26 00:51:52,133 INFO Connection check task end - -2025-09-26 00:51:53,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:55,134 INFO Connection check task start - -2025-09-26 00:51:55,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:55,134 INFO Out dated connection ,size=0 - -2025-09-26 00:51:55,134 INFO Connection check task end - -2025-09-26 00:51:56,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:51:58,134 INFO Connection check task start - -2025-09-26 00:51:58,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:51:58,135 INFO Out dated connection ,size=0 - -2025-09-26 00:51:58,135 INFO Connection check task end - -2025-09-26 00:51:59,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:01,136 INFO Connection check task start - -2025-09-26 00:52:01,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:01,136 INFO Out dated connection ,size=0 - -2025-09-26 00:52:01,136 INFO Connection check task end - -2025-09-26 00:52:02,542 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:04,136 INFO Connection check task start - -2025-09-26 00:52:04,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:04,136 INFO Out dated connection ,size=0 - -2025-09-26 00:52:04,136 INFO Connection check task end - -2025-09-26 00:52:05,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:07,137 INFO Connection check task start - -2025-09-26 00:52:07,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:07,137 INFO Out dated connection ,size=0 - -2025-09-26 00:52:07,137 INFO Connection check task end - -2025-09-26 00:52:08,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:10,138 INFO Connection check task start - -2025-09-26 00:52:10,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:10,138 INFO Out dated connection ,size=0 - -2025-09-26 00:52:10,138 INFO Connection check task end - -2025-09-26 00:52:11,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:13,138 INFO Connection check task start - -2025-09-26 00:52:13,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:13,138 INFO Out dated connection ,size=0 - -2025-09-26 00:52:13,138 INFO Connection check task end - -2025-09-26 00:52:14,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:16,139 INFO Connection check task start - -2025-09-26 00:52:16,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:16,139 INFO Out dated connection ,size=0 - -2025-09-26 00:52:16,139 INFO Connection check task end - -2025-09-26 00:52:17,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:19,139 INFO Connection check task start - -2025-09-26 00:52:19,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:19,140 INFO Out dated connection ,size=0 - -2025-09-26 00:52:19,140 INFO Connection check task end - -2025-09-26 00:52:20,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:22,140 INFO Connection check task start - -2025-09-26 00:52:22,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:22,141 INFO Out dated connection ,size=0 - -2025-09-26 00:52:22,141 INFO Connection check task end - -2025-09-26 00:52:23,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:25,142 INFO Connection check task start - -2025-09-26 00:52:25,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:25,142 INFO Out dated connection ,size=0 - -2025-09-26 00:52:25,142 INFO Connection check task end - -2025-09-26 00:52:26,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:28,143 INFO Connection check task start - -2025-09-26 00:52:28,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:28,143 INFO Out dated connection ,size=0 - -2025-09-26 00:52:28,143 INFO Connection check task end - -2025-09-26 00:52:29,548 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:31,143 INFO Connection check task start - -2025-09-26 00:52:31,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:31,144 INFO Out dated connection ,size=0 - -2025-09-26 00:52:31,144 INFO Connection check task end - -2025-09-26 00:52:32,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:34,144 INFO Connection check task start - -2025-09-26 00:52:34,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:34,144 INFO Out dated connection ,size=0 - -2025-09-26 00:52:34,144 INFO Connection check task end - -2025-09-26 00:52:35,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:37,145 INFO Connection check task start - -2025-09-26 00:52:37,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:37,145 INFO Out dated connection ,size=0 - -2025-09-26 00:52:37,145 INFO Connection check task end - -2025-09-26 00:52:38,550 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:40,151 INFO Connection check task start - -2025-09-26 00:52:40,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:40,151 INFO Out dated connection ,size=0 - -2025-09-26 00:52:40,151 INFO Connection check task end - -2025-09-26 00:52:41,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:43,151 INFO Connection check task start - -2025-09-26 00:52:43,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:43,151 INFO Out dated connection ,size=0 - -2025-09-26 00:52:43,151 INFO Connection check task end - -2025-09-26 00:52:44,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:46,151 INFO Connection check task start - -2025-09-26 00:52:46,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:46,152 INFO Out dated connection ,size=0 - -2025-09-26 00:52:46,152 INFO Connection check task end - -2025-09-26 00:52:47,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:49,152 INFO Connection check task start - -2025-09-26 00:52:49,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:49,152 INFO Out dated connection ,size=0 - -2025-09-26 00:52:49,152 INFO Connection check task end - -2025-09-26 00:52:50,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:52,152 INFO Connection check task start - -2025-09-26 00:52:52,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:52,152 INFO Out dated connection ,size=0 - -2025-09-26 00:52:52,152 INFO Connection check task end - -2025-09-26 00:52:53,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:55,153 INFO Connection check task start - -2025-09-26 00:52:55,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:55,153 INFO Out dated connection ,size=0 - -2025-09-26 00:52:55,153 INFO Connection check task end - -2025-09-26 00:52:56,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:52:58,153 INFO Connection check task start - -2025-09-26 00:52:58,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:52:58,154 INFO Out dated connection ,size=0 - -2025-09-26 00:52:58,154 INFO Connection check task end - -2025-09-26 00:52:59,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:01,155 INFO Connection check task start - -2025-09-26 00:53:01,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:01,155 INFO Out dated connection ,size=0 - -2025-09-26 00:53:01,155 INFO Connection check task end - -2025-09-26 00:53:02,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:04,155 INFO Connection check task start - -2025-09-26 00:53:04,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:04,155 INFO Out dated connection ,size=0 - -2025-09-26 00:53:04,155 INFO Connection check task end - -2025-09-26 00:53:05,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:07,156 INFO Connection check task start - -2025-09-26 00:53:07,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:07,156 INFO Out dated connection ,size=0 - -2025-09-26 00:53:07,156 INFO Connection check task end - -2025-09-26 00:53:08,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:10,156 INFO Connection check task start - -2025-09-26 00:53:10,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:10,157 INFO Out dated connection ,size=0 - -2025-09-26 00:53:10,157 INFO Connection check task end - -2025-09-26 00:53:11,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:13,157 INFO Connection check task start - -2025-09-26 00:53:13,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:13,157 INFO Out dated connection ,size=0 - -2025-09-26 00:53:13,157 INFO Connection check task end - -2025-09-26 00:53:14,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:16,157 INFO Connection check task start - -2025-09-26 00:53:16,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:16,157 INFO Out dated connection ,size=0 - -2025-09-26 00:53:16,158 INFO Connection check task end - -2025-09-26 00:53:17,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:19,158 INFO Connection check task start - -2025-09-26 00:53:19,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:19,159 INFO Out dated connection ,size=0 - -2025-09-26 00:53:19,159 INFO Connection check task end - -2025-09-26 00:53:20,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:22,159 INFO Connection check task start - -2025-09-26 00:53:22,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:22,159 INFO Out dated connection ,size=0 - -2025-09-26 00:53:22,159 INFO Connection check task end - -2025-09-26 00:53:23,558 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:25,160 INFO Connection check task start - -2025-09-26 00:53:25,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:25,160 INFO Out dated connection ,size=0 - -2025-09-26 00:53:25,160 INFO Connection check task end - -2025-09-26 00:53:26,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:28,161 INFO Connection check task start - -2025-09-26 00:53:28,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:28,161 INFO Out dated connection ,size=0 - -2025-09-26 00:53:28,161 INFO Connection check task end - -2025-09-26 00:53:29,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:31,162 INFO Connection check task start - -2025-09-26 00:53:31,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:31,162 INFO Out dated connection ,size=0 - -2025-09-26 00:53:31,162 INFO Connection check task end - -2025-09-26 00:53:32,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:34,162 INFO Connection check task start - -2025-09-26 00:53:34,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:34,162 INFO Out dated connection ,size=0 - -2025-09-26 00:53:34,162 INFO Connection check task end - -2025-09-26 00:53:35,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:37,163 INFO Connection check task start - -2025-09-26 00:53:37,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:37,164 INFO Out dated connection ,size=0 - -2025-09-26 00:53:37,164 INFO Connection check task end - -2025-09-26 00:53:38,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:40,165 INFO Connection check task start - -2025-09-26 00:53:40,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:40,165 INFO Out dated connection ,size=0 - -2025-09-26 00:53:40,165 INFO Connection check task end - -2025-09-26 00:53:41,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:43,166 INFO Connection check task start - -2025-09-26 00:53:43,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:43,166 INFO Out dated connection ,size=0 - -2025-09-26 00:53:43,166 INFO Connection check task end - -2025-09-26 00:53:44,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:46,166 INFO Connection check task start - -2025-09-26 00:53:46,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:46,166 INFO Out dated connection ,size=0 - -2025-09-26 00:53:46,166 INFO Connection check task end - -2025-09-26 00:53:47,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:49,167 INFO Connection check task start - -2025-09-26 00:53:49,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:49,168 INFO Out dated connection ,size=0 - -2025-09-26 00:53:49,168 INFO Connection check task end - -2025-09-26 00:53:50,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:52,169 INFO Connection check task start - -2025-09-26 00:53:52,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:52,169 INFO Out dated connection ,size=0 - -2025-09-26 00:53:52,169 INFO Connection check task end - -2025-09-26 00:53:53,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:55,170 INFO Connection check task start - -2025-09-26 00:53:55,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:55,170 INFO Out dated connection ,size=0 - -2025-09-26 00:53:55,170 INFO Connection check task end - -2025-09-26 00:53:56,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:53:58,171 INFO Connection check task start - -2025-09-26 00:53:58,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:53:58,171 INFO Out dated connection ,size=0 - -2025-09-26 00:53:58,171 INFO Connection check task end - -2025-09-26 00:53:59,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:01,172 INFO Connection check task start - -2025-09-26 00:54:01,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:01,172 INFO Out dated connection ,size=0 - -2025-09-26 00:54:01,172 INFO Connection check task end - -2025-09-26 00:54:02,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:04,173 INFO Connection check task start - -2025-09-26 00:54:04,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:04,173 INFO Out dated connection ,size=0 - -2025-09-26 00:54:04,173 INFO Connection check task end - -2025-09-26 00:54:05,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:07,175 INFO Connection check task start - -2025-09-26 00:54:07,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:07,175 INFO Out dated connection ,size=0 - -2025-09-26 00:54:07,175 INFO Connection check task end - -2025-09-26 00:54:08,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:10,175 INFO Connection check task start - -2025-09-26 00:54:10,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:10,176 INFO Out dated connection ,size=0 - -2025-09-26 00:54:10,176 INFO Connection check task end - -2025-09-26 00:54:11,568 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:13,177 INFO Connection check task start - -2025-09-26 00:54:13,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:13,177 INFO Out dated connection ,size=0 - -2025-09-26 00:54:13,177 INFO Connection check task end - -2025-09-26 00:54:14,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:16,177 INFO Connection check task start - -2025-09-26 00:54:16,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:16,177 INFO Out dated connection ,size=0 - -2025-09-26 00:54:16,177 INFO Connection check task end - -2025-09-26 00:54:17,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:19,178 INFO Connection check task start - -2025-09-26 00:54:19,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:19,179 INFO Out dated connection ,size=0 - -2025-09-26 00:54:19,179 INFO Connection check task end - -2025-09-26 00:54:20,573 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:22,179 INFO Connection check task start - -2025-09-26 00:54:22,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:22,179 INFO Out dated connection ,size=0 - -2025-09-26 00:54:22,179 INFO Connection check task end - -2025-09-26 00:54:23,574 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:25,180 INFO Connection check task start - -2025-09-26 00:54:25,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:25,181 INFO Out dated connection ,size=0 - -2025-09-26 00:54:25,181 INFO Connection check task end - -2025-09-26 00:54:26,575 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:28,181 INFO Connection check task start - -2025-09-26 00:54:28,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:28,181 INFO Out dated connection ,size=0 - -2025-09-26 00:54:28,181 INFO Connection check task end - -2025-09-26 00:54:29,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:31,182 INFO Connection check task start - -2025-09-26 00:54:31,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:31,182 INFO Out dated connection ,size=0 - -2025-09-26 00:54:31,182 INFO Connection check task end - -2025-09-26 00:54:32,576 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:34,183 INFO Connection check task start - -2025-09-26 00:54:34,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:34,183 INFO Out dated connection ,size=0 - -2025-09-26 00:54:34,183 INFO Connection check task end - -2025-09-26 00:54:35,577 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:37,184 INFO Connection check task start - -2025-09-26 00:54:37,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:37,184 INFO Out dated connection ,size=0 - -2025-09-26 00:54:37,184 INFO Connection check task end - -2025-09-26 00:54:38,578 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:40,185 INFO Connection check task start - -2025-09-26 00:54:40,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:40,186 INFO Out dated connection ,size=0 - -2025-09-26 00:54:40,186 INFO Connection check task end - -2025-09-26 00:54:41,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:43,187 INFO Connection check task start - -2025-09-26 00:54:43,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:43,187 INFO Out dated connection ,size=0 - -2025-09-26 00:54:43,187 INFO Connection check task end - -2025-09-26 00:54:44,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:46,188 INFO Connection check task start - -2025-09-26 00:54:46,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:46,188 INFO Out dated connection ,size=0 - -2025-09-26 00:54:46,188 INFO Connection check task end - -2025-09-26 00:54:47,579 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:49,189 INFO Connection check task start - -2025-09-26 00:54:49,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:49,189 INFO Out dated connection ,size=0 - -2025-09-26 00:54:49,189 INFO Connection check task end - -2025-09-26 00:54:50,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:52,190 INFO Connection check task start - -2025-09-26 00:54:52,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:52,191 INFO Out dated connection ,size=0 - -2025-09-26 00:54:52,191 INFO Connection check task end - -2025-09-26 00:54:53,581 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:55,191 INFO Connection check task start - -2025-09-26 00:54:55,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:55,191 INFO Out dated connection ,size=0 - -2025-09-26 00:54:55,191 INFO Connection check task end - -2025-09-26 00:54:56,582 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:54:58,192 INFO Connection check task start - -2025-09-26 00:54:58,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:54:58,192 INFO Out dated connection ,size=0 - -2025-09-26 00:54:58,192 INFO Connection check task end - -2025-09-26 00:54:59,583 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:01,193 INFO Connection check task start - -2025-09-26 00:55:01,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:01,193 INFO Out dated connection ,size=0 - -2025-09-26 00:55:01,193 INFO Connection check task end - -2025-09-26 00:55:02,584 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:04,194 INFO Connection check task start - -2025-09-26 00:55:04,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:04,195 INFO Out dated connection ,size=0 - -2025-09-26 00:55:04,195 INFO Connection check task end - -2025-09-26 00:55:05,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:07,196 INFO Connection check task start - -2025-09-26 00:55:07,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:07,196 INFO Out dated connection ,size=0 - -2025-09-26 00:55:07,196 INFO Connection check task end - -2025-09-26 00:55:08,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:10,197 INFO Connection check task start - -2025-09-26 00:55:10,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:10,197 INFO Out dated connection ,size=0 - -2025-09-26 00:55:10,197 INFO Connection check task end - -2025-09-26 00:55:11,585 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:13,198 INFO Connection check task start - -2025-09-26 00:55:13,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:13,198 INFO Out dated connection ,size=0 - -2025-09-26 00:55:13,198 INFO Connection check task end - -2025-09-26 00:55:14,586 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:16,199 INFO Connection check task start - -2025-09-26 00:55:16,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:16,199 INFO Out dated connection ,size=0 - -2025-09-26 00:55:16,199 INFO Connection check task end - -2025-09-26 00:55:17,587 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:19,200 INFO Connection check task start - -2025-09-26 00:55:19,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:19,200 INFO Out dated connection ,size=0 - -2025-09-26 00:55:19,200 INFO Connection check task end - -2025-09-26 00:55:20,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:22,200 INFO Connection check task start - -2025-09-26 00:55:22,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:22,201 INFO Out dated connection ,size=0 - -2025-09-26 00:55:22,201 INFO Connection check task end - -2025-09-26 00:55:23,588 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:25,202 INFO Connection check task start - -2025-09-26 00:55:25,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:25,202 INFO Out dated connection ,size=0 - -2025-09-26 00:55:25,202 INFO Connection check task end - -2025-09-26 00:55:26,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:28,204 INFO Connection check task start - -2025-09-26 00:55:28,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:28,204 INFO Out dated connection ,size=0 - -2025-09-26 00:55:28,204 INFO Connection check task end - -2025-09-26 00:55:29,589 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:31,205 INFO Connection check task start - -2025-09-26 00:55:31,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:31,205 INFO Out dated connection ,size=0 - -2025-09-26 00:55:31,205 INFO Connection check task end - -2025-09-26 00:55:32,590 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:34,206 INFO Connection check task start - -2025-09-26 00:55:34,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:34,206 INFO Out dated connection ,size=0 - -2025-09-26 00:55:34,206 INFO Connection check task end - -2025-09-26 00:55:35,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:37,207 INFO Connection check task start - -2025-09-26 00:55:37,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:37,207 INFO Out dated connection ,size=0 - -2025-09-26 00:55:37,207 INFO Connection check task end - -2025-09-26 00:55:38,591 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:40,208 INFO Connection check task start - -2025-09-26 00:55:40,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:40,208 INFO Out dated connection ,size=0 - -2025-09-26 00:55:40,208 INFO Connection check task end - -2025-09-26 00:55:41,592 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:43,209 INFO Connection check task start - -2025-09-26 00:55:43,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:43,209 INFO Out dated connection ,size=0 - -2025-09-26 00:55:43,209 INFO Connection check task end - -2025-09-26 00:55:44,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:46,209 INFO Connection check task start - -2025-09-26 00:55:46,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:46,210 INFO Out dated connection ,size=0 - -2025-09-26 00:55:46,210 INFO Connection check task end - -2025-09-26 00:55:47,594 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:49,210 INFO Connection check task start - -2025-09-26 00:55:49,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:49,210 INFO Out dated connection ,size=0 - -2025-09-26 00:55:49,210 INFO Connection check task end - -2025-09-26 00:55:50,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:52,211 INFO Connection check task start - -2025-09-26 00:55:52,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:52,211 INFO Out dated connection ,size=0 - -2025-09-26 00:55:52,211 INFO Connection check task end - -2025-09-26 00:55:53,595 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:55,212 INFO Connection check task start - -2025-09-26 00:55:55,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:55,212 INFO Out dated connection ,size=0 - -2025-09-26 00:55:55,212 INFO Connection check task end - -2025-09-26 00:55:56,596 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:55:58,213 INFO Connection check task start - -2025-09-26 00:55:58,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:55:58,213 INFO Out dated connection ,size=0 - -2025-09-26 00:55:58,213 INFO Connection check task end - -2025-09-26 00:55:59,597 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:01,214 INFO Connection check task start - -2025-09-26 00:56:01,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:01,214 INFO Out dated connection ,size=0 - -2025-09-26 00:56:01,214 INFO Connection check task end - -2025-09-26 00:56:02,598 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:04,215 INFO Connection check task start - -2025-09-26 00:56:04,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:04,215 INFO Out dated connection ,size=0 - -2025-09-26 00:56:04,215 INFO Connection check task end - -2025-09-26 00:56:05,599 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:07,215 INFO Connection check task start - -2025-09-26 00:56:07,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:07,216 INFO Out dated connection ,size=0 - -2025-09-26 00:56:07,216 INFO Connection check task end - -2025-09-26 00:56:08,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:10,216 INFO Connection check task start - -2025-09-26 00:56:10,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:10,216 INFO Out dated connection ,size=0 - -2025-09-26 00:56:10,216 INFO Connection check task end - -2025-09-26 00:56:11,600 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:13,217 INFO Connection check task start - -2025-09-26 00:56:13,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:13,217 INFO Out dated connection ,size=0 - -2025-09-26 00:56:13,217 INFO Connection check task end - -2025-09-26 00:56:14,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:16,217 INFO Connection check task start - -2025-09-26 00:56:16,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:16,218 INFO Out dated connection ,size=0 - -2025-09-26 00:56:16,218 INFO Connection check task end - -2025-09-26 00:56:17,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:19,219 INFO Connection check task start - -2025-09-26 00:56:19,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:19,219 INFO Out dated connection ,size=0 - -2025-09-26 00:56:19,219 INFO Connection check task end - -2025-09-26 00:56:20,602 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:22,220 INFO Connection check task start - -2025-09-26 00:56:22,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:22,220 INFO Out dated connection ,size=0 - -2025-09-26 00:56:22,220 INFO Connection check task end - -2025-09-26 00:56:23,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:25,220 INFO Connection check task start - -2025-09-26 00:56:25,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:25,220 INFO Out dated connection ,size=0 - -2025-09-26 00:56:25,220 INFO Connection check task end - -2025-09-26 00:56:26,603 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:28,221 INFO Connection check task start - -2025-09-26 00:56:28,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:28,221 INFO Out dated connection ,size=0 - -2025-09-26 00:56:28,221 INFO Connection check task end - -2025-09-26 00:56:29,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:31,222 INFO Connection check task start - -2025-09-26 00:56:31,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:31,223 INFO Out dated connection ,size=0 - -2025-09-26 00:56:31,223 INFO Connection check task end - -2025-09-26 00:56:32,605 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:34,224 INFO Connection check task start - -2025-09-26 00:56:34,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:34,224 INFO Out dated connection ,size=0 - -2025-09-26 00:56:34,224 INFO Connection check task end - -2025-09-26 00:56:35,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:37,225 INFO Connection check task start - -2025-09-26 00:56:37,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:37,225 INFO Out dated connection ,size=0 - -2025-09-26 00:56:37,225 INFO Connection check task end - -2025-09-26 00:56:38,606 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:40,225 INFO Connection check task start - -2025-09-26 00:56:40,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:40,225 INFO Out dated connection ,size=0 - -2025-09-26 00:56:40,225 INFO Connection check task end - -2025-09-26 00:56:41,613 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:43,226 INFO Connection check task start - -2025-09-26 00:56:43,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:43,226 INFO Out dated connection ,size=0 - -2025-09-26 00:56:43,226 INFO Connection check task end - -2025-09-26 00:56:44,617 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:46,227 INFO Connection check task start - -2025-09-26 00:56:46,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:46,227 INFO Out dated connection ,size=0 - -2025-09-26 00:56:46,227 INFO Connection check task end - -2025-09-26 00:56:47,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:49,228 INFO Connection check task start - -2025-09-26 00:56:49,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:49,228 INFO Out dated connection ,size=0 - -2025-09-26 00:56:49,228 INFO Connection check task end - -2025-09-26 00:56:50,618 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:52,229 INFO Connection check task start - -2025-09-26 00:56:52,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:52,229 INFO Out dated connection ,size=0 - -2025-09-26 00:56:52,229 INFO Connection check task end - -2025-09-26 00:56:53,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:55,229 INFO Connection check task start - -2025-09-26 00:56:55,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:55,229 INFO Out dated connection ,size=0 - -2025-09-26 00:56:55,229 INFO Connection check task end - -2025-09-26 00:56:56,619 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:56:58,230 INFO Connection check task start - -2025-09-26 00:56:58,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:56:58,231 INFO Out dated connection ,size=0 - -2025-09-26 00:56:58,231 INFO Connection check task end - -2025-09-26 00:56:59,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:01,232 INFO Connection check task start - -2025-09-26 00:57:01,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:01,233 INFO Out dated connection ,size=0 - -2025-09-26 00:57:01,233 INFO Connection check task end - -2025-09-26 00:57:02,620 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:04,234 INFO Connection check task start - -2025-09-26 00:57:04,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:04,234 INFO Out dated connection ,size=0 - -2025-09-26 00:57:04,234 INFO Connection check task end - -2025-09-26 00:57:05,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:07,234 INFO Connection check task start - -2025-09-26 00:57:07,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:07,234 INFO Out dated connection ,size=0 - -2025-09-26 00:57:07,234 INFO Connection check task end - -2025-09-26 00:57:08,622 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:10,235 INFO Connection check task start - -2025-09-26 00:57:10,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:10,235 INFO Out dated connection ,size=0 - -2025-09-26 00:57:10,235 INFO Connection check task end - -2025-09-26 00:57:11,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:13,236 INFO Connection check task start - -2025-09-26 00:57:13,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:13,236 INFO Out dated connection ,size=0 - -2025-09-26 00:57:13,236 INFO Connection check task end - -2025-09-26 00:57:14,623 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:16,237 INFO Connection check task start - -2025-09-26 00:57:16,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:16,237 INFO Out dated connection ,size=0 - -2025-09-26 00:57:16,237 INFO Connection check task end - -2025-09-26 00:57:17,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:19,238 INFO Connection check task start - -2025-09-26 00:57:19,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:19,238 INFO Out dated connection ,size=0 - -2025-09-26 00:57:19,238 INFO Connection check task end - -2025-09-26 00:57:20,624 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:22,238 INFO Connection check task start - -2025-09-26 00:57:22,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:22,238 INFO Out dated connection ,size=0 - -2025-09-26 00:57:22,239 INFO Connection check task end - -2025-09-26 00:57:23,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:25,239 INFO Connection check task start - -2025-09-26 00:57:25,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:25,239 INFO Out dated connection ,size=0 - -2025-09-26 00:57:25,239 INFO Connection check task end - -2025-09-26 00:57:26,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:28,239 INFO Connection check task start - -2025-09-26 00:57:28,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:28,240 INFO Out dated connection ,size=0 - -2025-09-26 00:57:28,240 INFO Connection check task end - -2025-09-26 00:57:29,626 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:31,240 INFO Connection check task start - -2025-09-26 00:57:31,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:31,240 INFO Out dated connection ,size=0 - -2025-09-26 00:57:31,240 INFO Connection check task end - -2025-09-26 00:57:32,627 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:34,240 INFO Connection check task start - -2025-09-26 00:57:34,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:34,241 INFO Out dated connection ,size=0 - -2025-09-26 00:57:34,241 INFO Connection check task end - -2025-09-26 00:57:35,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:37,241 INFO Connection check task start - -2025-09-26 00:57:37,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:37,241 INFO Out dated connection ,size=0 - -2025-09-26 00:57:37,241 INFO Connection check task end - -2025-09-26 00:57:38,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:40,241 INFO Connection check task start - -2025-09-26 00:57:40,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:40,242 INFO Out dated connection ,size=0 - -2025-09-26 00:57:40,242 INFO Connection check task end - -2025-09-26 00:57:41,628 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:43,242 INFO Connection check task start - -2025-09-26 00:57:43,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:43,242 INFO Out dated connection ,size=0 - -2025-09-26 00:57:43,242 INFO Connection check task end - -2025-09-26 00:57:44,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:46,243 INFO Connection check task start - -2025-09-26 00:57:46,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:46,243 INFO Out dated connection ,size=0 - -2025-09-26 00:57:46,243 INFO Connection check task end - -2025-09-26 00:57:47,629 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:49,243 INFO Connection check task start - -2025-09-26 00:57:49,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:49,244 INFO Out dated connection ,size=0 - -2025-09-26 00:57:49,244 INFO Connection check task end - -2025-09-26 00:57:50,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:52,244 INFO Connection check task start - -2025-09-26 00:57:52,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:52,244 INFO Out dated connection ,size=0 - -2025-09-26 00:57:52,244 INFO Connection check task end - -2025-09-26 00:57:53,632 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:55,245 INFO Connection check task start - -2025-09-26 00:57:55,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:55,245 INFO Out dated connection ,size=0 - -2025-09-26 00:57:55,245 INFO Connection check task end - -2025-09-26 00:57:56,633 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:57:58,246 INFO Connection check task start - -2025-09-26 00:57:58,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:57:58,246 INFO Out dated connection ,size=0 - -2025-09-26 00:57:58,246 INFO Connection check task end - -2025-09-26 00:57:59,634 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:01,246 INFO Connection check task start - -2025-09-26 00:58:01,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:01,247 INFO Out dated connection ,size=0 - -2025-09-26 00:58:01,247 INFO Connection check task end - -2025-09-26 00:58:02,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:04,247 INFO Connection check task start - -2025-09-26 00:58:04,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:04,248 INFO Out dated connection ,size=0 - -2025-09-26 00:58:04,248 INFO Connection check task end - -2025-09-26 00:58:05,635 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:07,248 INFO Connection check task start - -2025-09-26 00:58:07,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:07,249 INFO Out dated connection ,size=0 - -2025-09-26 00:58:07,249 INFO Connection check task end - -2025-09-26 00:58:08,636 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:10,249 INFO Connection check task start - -2025-09-26 00:58:10,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:10,250 INFO Out dated connection ,size=0 - -2025-09-26 00:58:10,250 INFO Connection check task end - -2025-09-26 00:58:11,637 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:13,250 INFO Connection check task start - -2025-09-26 00:58:13,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:13,250 INFO Out dated connection ,size=0 - -2025-09-26 00:58:13,250 INFO Connection check task end - -2025-09-26 00:58:14,638 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:16,251 INFO Connection check task start - -2025-09-26 00:58:16,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:16,251 INFO Out dated connection ,size=0 - -2025-09-26 00:58:16,252 INFO Connection check task end - -2025-09-26 00:58:17,639 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:19,253 INFO Connection check task start - -2025-09-26 00:58:19,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:19,253 INFO Out dated connection ,size=0 - -2025-09-26 00:58:19,253 INFO Connection check task end - -2025-09-26 00:58:20,640 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:22,254 INFO Connection check task start - -2025-09-26 00:58:22,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:22,254 INFO Out dated connection ,size=0 - -2025-09-26 00:58:22,254 INFO Connection check task end - -2025-09-26 00:58:23,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:25,255 INFO Connection check task start - -2025-09-26 00:58:25,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:25,255 INFO Out dated connection ,size=0 - -2025-09-26 00:58:25,255 INFO Connection check task end - -2025-09-26 00:58:26,641 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:28,256 INFO Connection check task start - -2025-09-26 00:58:28,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:28,257 INFO Out dated connection ,size=0 - -2025-09-26 00:58:28,257 INFO Connection check task end - -2025-09-26 00:58:29,642 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:31,257 INFO Connection check task start - -2025-09-26 00:58:31,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:31,258 INFO Out dated connection ,size=0 - -2025-09-26 00:58:31,258 INFO Connection check task end - -2025-09-26 00:58:32,643 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:34,258 INFO Connection check task start - -2025-09-26 00:58:34,258 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:34,258 INFO Out dated connection ,size=0 - -2025-09-26 00:58:34,258 INFO Connection check task end - -2025-09-26 00:58:35,645 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:37,258 INFO Connection check task start - -2025-09-26 00:58:37,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:37,259 INFO Out dated connection ,size=0 - -2025-09-26 00:58:37,259 INFO Connection check task end - -2025-09-26 00:58:38,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:40,260 INFO Connection check task start - -2025-09-26 00:58:40,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:40,260 INFO Out dated connection ,size=0 - -2025-09-26 00:58:40,260 INFO Connection check task end - -2025-09-26 00:58:41,646 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:43,261 INFO Connection check task start - -2025-09-26 00:58:43,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:43,261 INFO Out dated connection ,size=0 - -2025-09-26 00:58:43,261 INFO Connection check task end - -2025-09-26 00:58:44,647 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:46,262 INFO Connection check task start - -2025-09-26 00:58:46,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:46,262 INFO Out dated connection ,size=0 - -2025-09-26 00:58:46,262 INFO Connection check task end - -2025-09-26 00:58:47,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:49,263 INFO Connection check task start - -2025-09-26 00:58:49,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:49,263 INFO Out dated connection ,size=0 - -2025-09-26 00:58:49,263 INFO Connection check task end - -2025-09-26 00:58:50,649 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:52,263 INFO Connection check task start - -2025-09-26 00:58:52,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:52,264 INFO Out dated connection ,size=0 - -2025-09-26 00:58:52,264 INFO Connection check task end - -2025-09-26 00:58:53,661 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:55,265 INFO Connection check task start - -2025-09-26 00:58:55,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:55,265 INFO Out dated connection ,size=0 - -2025-09-26 00:58:55,265 INFO Connection check task end - -2025-09-26 00:58:56,662 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:58:58,265 INFO Connection check task start - -2025-09-26 00:58:58,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:58:58,266 INFO Out dated connection ,size=0 - -2025-09-26 00:58:58,266 INFO Connection check task end - -2025-09-26 00:58:59,663 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:01,267 INFO Connection check task start - -2025-09-26 00:59:01,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:01,267 INFO Out dated connection ,size=0 - -2025-09-26 00:59:01,267 INFO Connection check task end - -2025-09-26 00:59:02,664 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:04,268 INFO Connection check task start - -2025-09-26 00:59:04,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:04,269 INFO Out dated connection ,size=0 - -2025-09-26 00:59:04,269 INFO Connection check task end - -2025-09-26 00:59:05,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:07,269 INFO Connection check task start - -2025-09-26 00:59:07,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:07,269 INFO Out dated connection ,size=0 - -2025-09-26 00:59:07,269 INFO Connection check task end - -2025-09-26 00:59:08,665 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:10,270 INFO Connection check task start - -2025-09-26 00:59:10,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:10,270 INFO Out dated connection ,size=0 - -2025-09-26 00:59:10,270 INFO Connection check task end - -2025-09-26 00:59:11,669 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:13,271 INFO Connection check task start - -2025-09-26 00:59:13,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:13,271 INFO Out dated connection ,size=0 - -2025-09-26 00:59:13,271 INFO Connection check task end - -2025-09-26 00:59:14,670 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:16,271 INFO Connection check task start - -2025-09-26 00:59:16,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:16,272 INFO Out dated connection ,size=0 - -2025-09-26 00:59:16,272 INFO Connection check task end - -2025-09-26 00:59:17,671 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:19,273 INFO Connection check task start - -2025-09-26 00:59:19,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:19,273 INFO Out dated connection ,size=0 - -2025-09-26 00:59:19,273 INFO Connection check task end - -2025-09-26 00:59:20,672 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:22,274 INFO Connection check task start - -2025-09-26 00:59:22,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:22,275 INFO Out dated connection ,size=0 - -2025-09-26 00:59:22,275 INFO Connection check task end - -2025-09-26 00:59:23,673 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:25,276 INFO Connection check task start - -2025-09-26 00:59:25,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:25,276 INFO Out dated connection ,size=0 - -2025-09-26 00:59:25,276 INFO Connection check task end - -2025-09-26 00:59:26,675 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:28,276 INFO Connection check task start - -2025-09-26 00:59:28,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:28,276 INFO Out dated connection ,size=0 - -2025-09-26 00:59:28,276 INFO Connection check task end - -2025-09-26 00:59:29,676 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:31,277 INFO Connection check task start - -2025-09-26 00:59:31,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:31,277 INFO Out dated connection ,size=0 - -2025-09-26 00:59:31,277 INFO Connection check task end - -2025-09-26 00:59:32,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:34,278 INFO Connection check task start - -2025-09-26 00:59:34,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:34,278 INFO Out dated connection ,size=0 - -2025-09-26 00:59:34,278 INFO Connection check task end - -2025-09-26 00:59:35,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:37,279 INFO Connection check task start - -2025-09-26 00:59:37,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:37,279 INFO Out dated connection ,size=0 - -2025-09-26 00:59:37,279 INFO Connection check task end - -2025-09-26 00:59:38,677 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:40,279 INFO Connection check task start - -2025-09-26 00:59:40,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:40,280 INFO Out dated connection ,size=0 - -2025-09-26 00:59:40,280 INFO Connection check task end - -2025-09-26 00:59:41,678 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:43,280 INFO Connection check task start - -2025-09-26 00:59:43,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:43,280 INFO Out dated connection ,size=0 - -2025-09-26 00:59:43,280 INFO Connection check task end - -2025-09-26 00:59:44,679 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:46,280 INFO Connection check task start - -2025-09-26 00:59:46,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:46,280 INFO Out dated connection ,size=0 - -2025-09-26 00:59:46,280 INFO Connection check task end - -2025-09-26 00:59:47,680 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:49,281 INFO Connection check task start - -2025-09-26 00:59:49,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:49,281 INFO Out dated connection ,size=0 - -2025-09-26 00:59:49,281 INFO Connection check task end - -2025-09-26 00:59:50,681 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:52,282 INFO Connection check task start - -2025-09-26 00:59:52,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:52,282 INFO Out dated connection ,size=0 - -2025-09-26 00:59:52,282 INFO Connection check task end - -2025-09-26 00:59:53,682 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:55,283 INFO Connection check task start - -2025-09-26 00:59:55,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:55,283 INFO Out dated connection ,size=0 - -2025-09-26 00:59:55,283 INFO Connection check task end - -2025-09-26 00:59:56,683 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 00:59:58,284 INFO Connection check task start - -2025-09-26 00:59:58,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 00:59:58,284 INFO Out dated connection ,size=0 - -2025-09-26 00:59:58,285 INFO Connection check task end - -2025-09-26 00:59:59,684 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:01,285 INFO Connection check task start - -2025-09-26 01:00:01,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:01,285 INFO Out dated connection ,size=0 - -2025-09-26 01:00:01,285 INFO Connection check task end - -2025-09-26 01:00:02,685 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:04,286 INFO Connection check task start - -2025-09-26 01:00:04,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:04,286 INFO Out dated connection ,size=0 - -2025-09-26 01:00:04,286 INFO Connection check task end - -2025-09-26 01:00:05,686 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:07,287 INFO Connection check task start - -2025-09-26 01:00:07,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:07,287 INFO Out dated connection ,size=0 - -2025-09-26 01:00:07,287 INFO Connection check task end - -2025-09-26 01:00:08,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:10,287 INFO Connection check task start - -2025-09-26 01:00:10,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:10,287 INFO Out dated connection ,size=0 - -2025-09-26 01:00:10,288 INFO Connection check task end - -2025-09-26 01:00:11,687 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:13,288 INFO Connection check task start - -2025-09-26 01:00:13,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:13,288 INFO Out dated connection ,size=0 - -2025-09-26 01:00:13,288 INFO Connection check task end - -2025-09-26 01:00:14,689 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:16,289 INFO Connection check task start - -2025-09-26 01:00:16,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:16,289 INFO Out dated connection ,size=0 - -2025-09-26 01:00:16,289 INFO Connection check task end - -2025-09-26 01:00:17,690 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:19,289 INFO Connection check task start - -2025-09-26 01:00:19,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:19,290 INFO Out dated connection ,size=0 - -2025-09-26 01:00:19,290 INFO Connection check task end - -2025-09-26 01:00:20,691 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:22,290 INFO Connection check task start - -2025-09-26 01:00:22,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:22,290 INFO Out dated connection ,size=0 - -2025-09-26 01:00:22,290 INFO Connection check task end - -2025-09-26 01:00:23,693 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:25,291 INFO Connection check task start - -2025-09-26 01:00:25,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:25,291 INFO Out dated connection ,size=0 - -2025-09-26 01:00:25,291 INFO Connection check task end - -2025-09-26 01:00:26,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:28,291 INFO Connection check task start - -2025-09-26 01:00:28,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:28,292 INFO Out dated connection ,size=0 - -2025-09-26 01:00:28,292 INFO Connection check task end - -2025-09-26 01:00:29,694 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:31,292 INFO Connection check task start - -2025-09-26 01:00:31,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:31,292 INFO Out dated connection ,size=0 - -2025-09-26 01:00:31,292 INFO Connection check task end - -2025-09-26 01:00:32,695 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:34,293 INFO Connection check task start - -2025-09-26 01:00:34,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:34,293 INFO Out dated connection ,size=0 - -2025-09-26 01:00:34,293 INFO Connection check task end - -2025-09-26 01:00:35,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:37,294 INFO Connection check task start - -2025-09-26 01:00:37,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:37,294 INFO Out dated connection ,size=0 - -2025-09-26 01:00:37,294 INFO Connection check task end - -2025-09-26 01:00:38,696 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:40,295 INFO Connection check task start - -2025-09-26 01:00:40,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:40,295 INFO Out dated connection ,size=0 - -2025-09-26 01:00:40,295 INFO Connection check task end - -2025-09-26 01:00:41,697 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:43,295 INFO Connection check task start - -2025-09-26 01:00:43,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:43,296 INFO Out dated connection ,size=0 - -2025-09-26 01:00:43,296 INFO Connection check task end - -2025-09-26 01:00:44,698 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:46,296 INFO Connection check task start - -2025-09-26 01:00:46,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:46,297 INFO Out dated connection ,size=0 - -2025-09-26 01:00:46,297 INFO Connection check task end - -2025-09-26 01:00:47,699 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:49,297 INFO Connection check task start - -2025-09-26 01:00:49,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:49,297 INFO Out dated connection ,size=0 - -2025-09-26 01:00:49,297 INFO Connection check task end - -2025-09-26 01:00:50,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:52,298 INFO Connection check task start - -2025-09-26 01:00:52,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:52,298 INFO Out dated connection ,size=0 - -2025-09-26 01:00:52,298 INFO Connection check task end - -2025-09-26 01:00:53,700 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:55,299 INFO Connection check task start - -2025-09-26 01:00:55,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:55,299 INFO Out dated connection ,size=0 - -2025-09-26 01:00:55,299 INFO Connection check task end - -2025-09-26 01:00:56,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:00:58,300 INFO Connection check task start - -2025-09-26 01:00:58,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:00:58,300 INFO Out dated connection ,size=0 - -2025-09-26 01:00:58,300 INFO Connection check task end - -2025-09-26 01:00:59,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:01,301 INFO Connection check task start - -2025-09-26 01:01:01,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:01,301 INFO Out dated connection ,size=0 - -2025-09-26 01:01:01,301 INFO Connection check task end - -2025-09-26 01:01:02,701 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:04,302 INFO Connection check task start - -2025-09-26 01:01:04,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:04,303 INFO Out dated connection ,size=0 - -2025-09-26 01:01:04,303 INFO Connection check task end - -2025-09-26 01:01:05,702 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:07,305 INFO Connection check task start - -2025-09-26 01:01:07,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:07,305 INFO Out dated connection ,size=0 - -2025-09-26 01:01:07,305 INFO Connection check task end - -2025-09-26 01:01:08,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:10,305 INFO Connection check task start - -2025-09-26 01:01:10,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:10,305 INFO Out dated connection ,size=0 - -2025-09-26 01:01:10,305 INFO Connection check task end - -2025-09-26 01:01:11,703 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:13,306 INFO Connection check task start - -2025-09-26 01:01:13,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:13,306 INFO Out dated connection ,size=0 - -2025-09-26 01:01:13,306 INFO Connection check task end - -2025-09-26 01:01:14,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:16,307 INFO Connection check task start - -2025-09-26 01:01:16,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:16,307 INFO Out dated connection ,size=0 - -2025-09-26 01:01:16,307 INFO Connection check task end - -2025-09-26 01:01:17,704 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:19,308 INFO Connection check task start - -2025-09-26 01:01:19,308 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:19,308 INFO Out dated connection ,size=0 - -2025-09-26 01:01:19,309 INFO Connection check task end - -2025-09-26 01:01:20,705 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:22,310 INFO Connection check task start - -2025-09-26 01:01:22,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:22,310 INFO Out dated connection ,size=0 - -2025-09-26 01:01:22,310 INFO Connection check task end - -2025-09-26 01:01:23,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:25,311 INFO Connection check task start - -2025-09-26 01:01:25,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:25,311 INFO Out dated connection ,size=0 - -2025-09-26 01:01:25,311 INFO Connection check task end - -2025-09-26 01:01:26,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:28,311 INFO Connection check task start - -2025-09-26 01:01:28,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:28,312 INFO Out dated connection ,size=0 - -2025-09-26 01:01:28,312 INFO Connection check task end - -2025-09-26 01:01:29,706 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:31,312 INFO Connection check task start - -2025-09-26 01:01:31,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:31,312 INFO Out dated connection ,size=0 - -2025-09-26 01:01:31,312 INFO Connection check task end - -2025-09-26 01:01:32,707 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:34,313 INFO Connection check task start - -2025-09-26 01:01:34,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:34,313 INFO Out dated connection ,size=0 - -2025-09-26 01:01:34,313 INFO Connection check task end - -2025-09-26 01:01:35,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:37,314 INFO Connection check task start - -2025-09-26 01:01:37,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:37,314 INFO Out dated connection ,size=0 - -2025-09-26 01:01:37,314 INFO Connection check task end - -2025-09-26 01:01:38,708 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:40,314 INFO Connection check task start - -2025-09-26 01:01:40,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:40,314 INFO Out dated connection ,size=0 - -2025-09-26 01:01:40,315 INFO Connection check task end - -2025-09-26 01:01:41,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:43,315 INFO Connection check task start - -2025-09-26 01:01:43,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:43,315 INFO Out dated connection ,size=0 - -2025-09-26 01:01:43,315 INFO Connection check task end - -2025-09-26 01:01:44,709 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:46,315 INFO Connection check task start - -2025-09-26 01:01:46,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:46,315 INFO Out dated connection ,size=0 - -2025-09-26 01:01:46,316 INFO Connection check task end - -2025-09-26 01:01:47,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:49,316 INFO Connection check task start - -2025-09-26 01:01:49,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:49,317 INFO Out dated connection ,size=0 - -2025-09-26 01:01:49,317 INFO Connection check task end - -2025-09-26 01:01:50,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:52,317 INFO Connection check task start - -2025-09-26 01:01:52,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:52,317 INFO Out dated connection ,size=0 - -2025-09-26 01:01:52,317 INFO Connection check task end - -2025-09-26 01:01:53,710 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:55,317 INFO Connection check task start - -2025-09-26 01:01:55,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:55,318 INFO Out dated connection ,size=0 - -2025-09-26 01:01:55,318 INFO Connection check task end - -2025-09-26 01:01:56,711 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:01:58,318 INFO Connection check task start - -2025-09-26 01:01:58,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:01:58,318 INFO Out dated connection ,size=0 - -2025-09-26 01:01:58,318 INFO Connection check task end - -2025-09-26 01:01:59,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:01,319 INFO Connection check task start - -2025-09-26 01:02:01,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:01,320 INFO Out dated connection ,size=0 - -2025-09-26 01:02:01,320 INFO Connection check task end - -2025-09-26 01:02:02,712 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:04,320 INFO Connection check task start - -2025-09-26 01:02:04,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:04,320 INFO Out dated connection ,size=0 - -2025-09-26 01:02:04,320 INFO Connection check task end - -2025-09-26 01:02:05,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:07,321 INFO Connection check task start - -2025-09-26 01:02:07,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:07,321 INFO Out dated connection ,size=0 - -2025-09-26 01:02:07,321 INFO Connection check task end - -2025-09-26 01:02:08,713 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:10,322 INFO Connection check task start - -2025-09-26 01:02:10,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:10,322 INFO Out dated connection ,size=0 - -2025-09-26 01:02:10,322 INFO Connection check task end - -2025-09-26 01:02:11,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:13,323 INFO Connection check task start - -2025-09-26 01:02:13,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:13,323 INFO Out dated connection ,size=0 - -2025-09-26 01:02:13,323 INFO Connection check task end - -2025-09-26 01:02:14,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:16,324 INFO Connection check task start - -2025-09-26 01:02:16,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:16,324 INFO Out dated connection ,size=0 - -2025-09-26 01:02:16,325 INFO Connection check task end - -2025-09-26 01:02:17,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:19,325 INFO Connection check task start - -2025-09-26 01:02:19,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:19,325 INFO Out dated connection ,size=0 - -2025-09-26 01:02:19,325 INFO Connection check task end - -2025-09-26 01:02:20,714 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:22,326 INFO Connection check task start - -2025-09-26 01:02:22,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:22,326 INFO Out dated connection ,size=0 - -2025-09-26 01:02:22,326 INFO Connection check task end - -2025-09-26 01:02:23,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:25,327 INFO Connection check task start - -2025-09-26 01:02:25,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:25,328 INFO Out dated connection ,size=0 - -2025-09-26 01:02:25,328 INFO Connection check task end - -2025-09-26 01:02:26,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:28,328 INFO Connection check task start - -2025-09-26 01:02:28,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:28,329 INFO Out dated connection ,size=0 - -2025-09-26 01:02:28,329 INFO Connection check task end - -2025-09-26 01:02:29,715 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:31,329 INFO Connection check task start - -2025-09-26 01:02:31,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:31,329 INFO Out dated connection ,size=0 - -2025-09-26 01:02:31,329 INFO Connection check task end - -2025-09-26 01:02:32,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:34,330 INFO Connection check task start - -2025-09-26 01:02:34,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:34,330 INFO Out dated connection ,size=0 - -2025-09-26 01:02:34,330 INFO Connection check task end - -2025-09-26 01:02:35,716 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:37,331 INFO Connection check task start - -2025-09-26 01:02:37,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:37,331 INFO Out dated connection ,size=0 - -2025-09-26 01:02:37,331 INFO Connection check task end - -2025-09-26 01:02:38,717 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:40,331 INFO Connection check task start - -2025-09-26 01:02:40,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:40,331 INFO Out dated connection ,size=0 - -2025-09-26 01:02:40,331 INFO Connection check task end - -2025-09-26 01:02:41,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:43,332 INFO Connection check task start - -2025-09-26 01:02:43,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:43,332 INFO Out dated connection ,size=0 - -2025-09-26 01:02:43,332 INFO Connection check task end - -2025-09-26 01:02:44,718 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:46,332 INFO Connection check task start - -2025-09-26 01:02:46,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:46,333 INFO Out dated connection ,size=0 - -2025-09-26 01:02:46,333 INFO Connection check task end - -2025-09-26 01:02:47,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:49,333 INFO Connection check task start - -2025-09-26 01:02:49,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:49,334 INFO Out dated connection ,size=0 - -2025-09-26 01:02:49,334 INFO Connection check task end - -2025-09-26 01:02:50,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:52,334 INFO Connection check task start - -2025-09-26 01:02:52,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:52,334 INFO Out dated connection ,size=0 - -2025-09-26 01:02:52,334 INFO Connection check task end - -2025-09-26 01:02:53,720 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:55,335 INFO Connection check task start - -2025-09-26 01:02:55,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:55,335 INFO Out dated connection ,size=0 - -2025-09-26 01:02:55,335 INFO Connection check task end - -2025-09-26 01:02:56,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:02:58,336 INFO Connection check task start - -2025-09-26 01:02:58,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:02:58,337 INFO Out dated connection ,size=0 - -2025-09-26 01:02:58,337 INFO Connection check task end - -2025-09-26 01:02:59,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:01,337 INFO Connection check task start - -2025-09-26 01:03:01,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:01,337 INFO Out dated connection ,size=0 - -2025-09-26 01:03:01,337 INFO Connection check task end - -2025-09-26 01:03:02,721 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:04,338 INFO Connection check task start - -2025-09-26 01:03:04,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:04,338 INFO Out dated connection ,size=0 - -2025-09-26 01:03:04,339 INFO Connection check task end - -2025-09-26 01:03:05,722 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:07,339 INFO Connection check task start - -2025-09-26 01:03:07,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:07,339 INFO Out dated connection ,size=0 - -2025-09-26 01:03:07,339 INFO Connection check task end - -2025-09-26 01:03:08,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:10,340 INFO Connection check task start - -2025-09-26 01:03:10,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:10,340 INFO Out dated connection ,size=0 - -2025-09-26 01:03:10,340 INFO Connection check task end - -2025-09-26 01:03:11,723 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:13,341 INFO Connection check task start - -2025-09-26 01:03:13,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:13,342 INFO Out dated connection ,size=0 - -2025-09-26 01:03:13,342 INFO Connection check task end - -2025-09-26 01:03:14,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:16,342 INFO Connection check task start - -2025-09-26 01:03:16,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:16,342 INFO Out dated connection ,size=0 - -2025-09-26 01:03:16,342 INFO Connection check task end - -2025-09-26 01:03:17,724 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:19,344 INFO Connection check task start - -2025-09-26 01:03:19,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:19,344 INFO Out dated connection ,size=0 - -2025-09-26 01:03:19,344 INFO Connection check task end - -2025-09-26 01:03:20,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:22,345 INFO Connection check task start - -2025-09-26 01:03:22,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:22,345 INFO Out dated connection ,size=0 - -2025-09-26 01:03:22,345 INFO Connection check task end - -2025-09-26 01:03:23,725 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:25,346 INFO Connection check task start - -2025-09-26 01:03:25,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:25,346 INFO Out dated connection ,size=0 - -2025-09-26 01:03:25,346 INFO Connection check task end - -2025-09-26 01:03:26,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:28,347 INFO Connection check task start - -2025-09-26 01:03:28,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:28,347 INFO Out dated connection ,size=0 - -2025-09-26 01:03:28,347 INFO Connection check task end - -2025-09-26 01:03:29,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:31,349 INFO Connection check task start - -2025-09-26 01:03:31,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:31,349 INFO Out dated connection ,size=0 - -2025-09-26 01:03:31,349 INFO Connection check task end - -2025-09-26 01:03:32,726 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:34,350 INFO Connection check task start - -2025-09-26 01:03:34,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:34,350 INFO Out dated connection ,size=0 - -2025-09-26 01:03:34,350 INFO Connection check task end - -2025-09-26 01:03:35,727 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:37,351 INFO Connection check task start - -2025-09-26 01:03:37,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:37,351 INFO Out dated connection ,size=0 - -2025-09-26 01:03:37,351 INFO Connection check task end - -2025-09-26 01:03:38,728 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:40,351 INFO Connection check task start - -2025-09-26 01:03:40,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:40,351 INFO Out dated connection ,size=0 - -2025-09-26 01:03:40,351 INFO Connection check task end - -2025-09-26 01:03:41,729 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:43,352 INFO Connection check task start - -2025-09-26 01:03:43,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:43,352 INFO Out dated connection ,size=0 - -2025-09-26 01:03:43,352 INFO Connection check task end - -2025-09-26 01:03:44,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:46,353 INFO Connection check task start - -2025-09-26 01:03:46,353 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:46,353 INFO Out dated connection ,size=0 - -2025-09-26 01:03:46,353 INFO Connection check task end - -2025-09-26 01:03:47,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:49,354 INFO Connection check task start - -2025-09-26 01:03:49,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:49,355 INFO Out dated connection ,size=0 - -2025-09-26 01:03:49,355 INFO Connection check task end - -2025-09-26 01:03:50,730 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:52,356 INFO Connection check task start - -2025-09-26 01:03:52,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:52,356 INFO Out dated connection ,size=0 - -2025-09-26 01:03:52,356 INFO Connection check task end - -2025-09-26 01:03:53,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:55,356 INFO Connection check task start - -2025-09-26 01:03:55,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:55,356 INFO Out dated connection ,size=0 - -2025-09-26 01:03:55,356 INFO Connection check task end - -2025-09-26 01:03:56,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:03:58,357 INFO Connection check task start - -2025-09-26 01:03:58,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:03:58,357 INFO Out dated connection ,size=0 - -2025-09-26 01:03:58,357 INFO Connection check task end - -2025-09-26 01:03:59,731 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:01,358 INFO Connection check task start - -2025-09-26 01:04:01,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:01,358 INFO Out dated connection ,size=0 - -2025-09-26 01:04:01,358 INFO Connection check task end - -2025-09-26 01:04:02,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:04,359 INFO Connection check task start - -2025-09-26 01:04:04,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:04,359 INFO Out dated connection ,size=0 - -2025-09-26 01:04:04,359 INFO Connection check task end - -2025-09-26 01:04:05,733 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:07,361 INFO Connection check task start - -2025-09-26 01:04:07,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:07,361 INFO Out dated connection ,size=0 - -2025-09-26 01:04:07,361 INFO Connection check task end - -2025-09-26 01:04:08,747 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:10,361 INFO Connection check task start - -2025-09-26 01:04:10,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:10,361 INFO Out dated connection ,size=0 - -2025-09-26 01:04:10,361 INFO Connection check task end - -2025-09-26 01:04:11,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:13,362 INFO Connection check task start - -2025-09-26 01:04:13,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:13,362 INFO Out dated connection ,size=0 - -2025-09-26 01:04:13,362 INFO Connection check task end - -2025-09-26 01:04:14,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:16,362 INFO Connection check task start - -2025-09-26 01:04:16,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:16,362 INFO Out dated connection ,size=0 - -2025-09-26 01:04:16,362 INFO Connection check task end - -2025-09-26 01:04:17,749 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:19,363 INFO Connection check task start - -2025-09-26 01:04:19,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:19,364 INFO Out dated connection ,size=0 - -2025-09-26 01:04:19,364 INFO Connection check task end - -2025-09-26 01:04:20,750 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:22,364 INFO Connection check task start - -2025-09-26 01:04:22,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:22,364 INFO Out dated connection ,size=0 - -2025-09-26 01:04:22,364 INFO Connection check task end - -2025-09-26 01:04:23,751 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:25,365 INFO Connection check task start - -2025-09-26 01:04:25,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:25,365 INFO Out dated connection ,size=0 - -2025-09-26 01:04:25,365 INFO Connection check task end - -2025-09-26 01:04:26,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:28,365 INFO Connection check task start - -2025-09-26 01:04:28,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:28,365 INFO Out dated connection ,size=0 - -2025-09-26 01:04:28,365 INFO Connection check task end - -2025-09-26 01:04:29,752 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:31,367 INFO Connection check task start - -2025-09-26 01:04:31,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:31,367 INFO Out dated connection ,size=0 - -2025-09-26 01:04:31,367 INFO Connection check task end - -2025-09-26 01:04:32,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:34,368 INFO Connection check task start - -2025-09-26 01:04:34,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:34,368 INFO Out dated connection ,size=0 - -2025-09-26 01:04:34,368 INFO Connection check task end - -2025-09-26 01:04:35,753 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:37,368 INFO Connection check task start - -2025-09-26 01:04:37,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:37,369 INFO Out dated connection ,size=0 - -2025-09-26 01:04:37,369 INFO Connection check task end - -2025-09-26 01:04:38,754 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:40,369 INFO Connection check task start - -2025-09-26 01:04:40,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:40,370 INFO Out dated connection ,size=0 - -2025-09-26 01:04:40,370 INFO Connection check task end - -2025-09-26 01:04:41,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:43,370 INFO Connection check task start - -2025-09-26 01:04:43,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:43,370 INFO Out dated connection ,size=0 - -2025-09-26 01:04:43,370 INFO Connection check task end - -2025-09-26 01:04:44,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:46,371 INFO Connection check task start - -2025-09-26 01:04:46,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:46,371 INFO Out dated connection ,size=0 - -2025-09-26 01:04:46,371 INFO Connection check task end - -2025-09-26 01:04:47,755 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:49,372 INFO Connection check task start - -2025-09-26 01:04:49,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:49,373 INFO Out dated connection ,size=0 - -2025-09-26 01:04:49,373 INFO Connection check task end - -2025-09-26 01:04:50,756 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:52,373 INFO Connection check task start - -2025-09-26 01:04:52,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:52,373 INFO Out dated connection ,size=0 - -2025-09-26 01:04:52,373 INFO Connection check task end - -2025-09-26 01:04:53,757 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:55,374 INFO Connection check task start - -2025-09-26 01:04:55,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:55,375 INFO Out dated connection ,size=0 - -2025-09-26 01:04:55,375 INFO Connection check task end - -2025-09-26 01:04:56,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:04:58,375 INFO Connection check task start - -2025-09-26 01:04:58,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:04:58,375 INFO Out dated connection ,size=0 - -2025-09-26 01:04:58,375 INFO Connection check task end - -2025-09-26 01:04:59,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:01,377 INFO Connection check task start - -2025-09-26 01:05:01,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:01,377 INFO Out dated connection ,size=0 - -2025-09-26 01:05:01,377 INFO Connection check task end - -2025-09-26 01:05:02,758 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:04,378 INFO Connection check task start - -2025-09-26 01:05:04,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:04,378 INFO Out dated connection ,size=0 - -2025-09-26 01:05:04,378 INFO Connection check task end - -2025-09-26 01:05:05,759 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:07,379 INFO Connection check task start - -2025-09-26 01:05:07,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:07,380 INFO Out dated connection ,size=0 - -2025-09-26 01:05:07,380 INFO Connection check task end - -2025-09-26 01:05:08,760 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:10,381 INFO Connection check task start - -2025-09-26 01:05:10,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:10,381 INFO Out dated connection ,size=0 - -2025-09-26 01:05:10,381 INFO Connection check task end - -2025-09-26 01:05:11,761 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:13,382 INFO Connection check task start - -2025-09-26 01:05:13,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:13,382 INFO Out dated connection ,size=0 - -2025-09-26 01:05:13,382 INFO Connection check task end - -2025-09-26 01:05:14,777 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:16,382 INFO Connection check task start - -2025-09-26 01:05:16,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:16,383 INFO Out dated connection ,size=0 - -2025-09-26 01:05:16,383 INFO Connection check task end - -2025-09-26 01:05:17,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:19,383 INFO Connection check task start - -2025-09-26 01:05:19,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:19,384 INFO Out dated connection ,size=0 - -2025-09-26 01:05:19,384 INFO Connection check task end - -2025-09-26 01:05:20,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:22,384 INFO Connection check task start - -2025-09-26 01:05:22,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:22,385 INFO Out dated connection ,size=0 - -2025-09-26 01:05:22,385 INFO Connection check task end - -2025-09-26 01:05:23,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:25,386 INFO Connection check task start - -2025-09-26 01:05:25,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:25,386 INFO Out dated connection ,size=0 - -2025-09-26 01:05:25,386 INFO Connection check task end - -2025-09-26 01:05:26,782 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:28,386 INFO Connection check task start - -2025-09-26 01:05:28,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:28,386 INFO Out dated connection ,size=0 - -2025-09-26 01:05:28,386 INFO Connection check task end - -2025-09-26 01:05:29,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:31,387 INFO Connection check task start - -2025-09-26 01:05:31,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:31,387 INFO Out dated connection ,size=0 - -2025-09-26 01:05:31,387 INFO Connection check task end - -2025-09-26 01:05:32,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:34,388 INFO Connection check task start - -2025-09-26 01:05:34,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:34,388 INFO Out dated connection ,size=0 - -2025-09-26 01:05:34,388 INFO Connection check task end - -2025-09-26 01:05:35,783 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:37,389 INFO Connection check task start - -2025-09-26 01:05:37,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:37,389 INFO Out dated connection ,size=0 - -2025-09-26 01:05:37,389 INFO Connection check task end - -2025-09-26 01:05:38,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:40,390 INFO Connection check task start - -2025-09-26 01:05:40,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:40,390 INFO Out dated connection ,size=0 - -2025-09-26 01:05:40,390 INFO Connection check task end - -2025-09-26 01:05:41,784 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:43,391 INFO Connection check task start - -2025-09-26 01:05:43,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:43,391 INFO Out dated connection ,size=0 - -2025-09-26 01:05:43,391 INFO Connection check task end - -2025-09-26 01:05:44,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:46,391 INFO Connection check task start - -2025-09-26 01:05:46,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:46,391 INFO Out dated connection ,size=0 - -2025-09-26 01:05:46,391 INFO Connection check task end - -2025-09-26 01:05:47,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:49,392 INFO Connection check task start - -2025-09-26 01:05:49,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:49,392 INFO Out dated connection ,size=0 - -2025-09-26 01:05:49,392 INFO Connection check task end - -2025-09-26 01:05:50,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:52,393 INFO Connection check task start - -2025-09-26 01:05:52,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:52,393 INFO Out dated connection ,size=0 - -2025-09-26 01:05:52,393 INFO Connection check task end - -2025-09-26 01:05:53,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:55,393 INFO Connection check task start - -2025-09-26 01:05:55,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:55,394 INFO Out dated connection ,size=0 - -2025-09-26 01:05:55,394 INFO Connection check task end - -2025-09-26 01:05:56,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:05:58,394 INFO Connection check task start - -2025-09-26 01:05:58,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:05:58,394 INFO Out dated connection ,size=0 - -2025-09-26 01:05:58,394 INFO Connection check task end - -2025-09-26 01:05:59,788 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:01,395 INFO Connection check task start - -2025-09-26 01:06:01,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:01,395 INFO Out dated connection ,size=0 - -2025-09-26 01:06:01,395 INFO Connection check task end - -2025-09-26 01:06:02,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:04,396 INFO Connection check task start - -2025-09-26 01:06:04,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:04,397 INFO Out dated connection ,size=0 - -2025-09-26 01:06:04,397 INFO Connection check task end - -2025-09-26 01:06:05,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:07,397 INFO Connection check task start - -2025-09-26 01:06:07,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:07,397 INFO Out dated connection ,size=0 - -2025-09-26 01:06:07,397 INFO Connection check task end - -2025-09-26 01:06:08,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:10,398 INFO Connection check task start - -2025-09-26 01:06:10,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:10,398 INFO Out dated connection ,size=0 - -2025-09-26 01:06:10,398 INFO Connection check task end - -2025-09-26 01:06:11,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:13,399 INFO Connection check task start - -2025-09-26 01:06:13,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:13,399 INFO Out dated connection ,size=0 - -2025-09-26 01:06:13,399 INFO Connection check task end - -2025-09-26 01:06:14,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:16,400 INFO Connection check task start - -2025-09-26 01:06:16,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:16,400 INFO Out dated connection ,size=0 - -2025-09-26 01:06:16,400 INFO Connection check task end - -2025-09-26 01:06:17,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:19,400 INFO Connection check task start - -2025-09-26 01:06:19,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:19,400 INFO Out dated connection ,size=0 - -2025-09-26 01:06:19,400 INFO Connection check task end - -2025-09-26 01:06:20,793 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:22,401 INFO Connection check task start - -2025-09-26 01:06:22,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:22,401 INFO Out dated connection ,size=0 - -2025-09-26 01:06:22,401 INFO Connection check task end - -2025-09-26 01:06:23,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:25,429 INFO Connection check task start - -2025-09-26 01:06:25,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:25,429 INFO Out dated connection ,size=0 - -2025-09-26 01:06:25,429 INFO Connection check task end - -2025-09-26 01:06:26,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:28,430 INFO Connection check task start - -2025-09-26 01:06:28,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:28,431 INFO Out dated connection ,size=0 - -2025-09-26 01:06:28,431 INFO Connection check task end - -2025-09-26 01:06:29,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:31,431 INFO Connection check task start - -2025-09-26 01:06:31,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:31,431 INFO Out dated connection ,size=0 - -2025-09-26 01:06:31,431 INFO Connection check task end - -2025-09-26 01:06:32,796 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:34,432 INFO Connection check task start - -2025-09-26 01:06:34,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:34,432 INFO Out dated connection ,size=0 - -2025-09-26 01:06:34,432 INFO Connection check task end - -2025-09-26 01:06:35,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:37,433 INFO Connection check task start - -2025-09-26 01:06:37,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:37,433 INFO Out dated connection ,size=0 - -2025-09-26 01:06:37,433 INFO Connection check task end - -2025-09-26 01:06:38,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:40,434 INFO Connection check task start - -2025-09-26 01:06:40,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:40,434 INFO Out dated connection ,size=0 - -2025-09-26 01:06:40,434 INFO Connection check task end - -2025-09-26 01:06:41,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:43,434 INFO Connection check task start - -2025-09-26 01:06:43,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:43,434 INFO Out dated connection ,size=0 - -2025-09-26 01:06:43,435 INFO Connection check task end - -2025-09-26 01:06:44,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:46,435 INFO Connection check task start - -2025-09-26 01:06:46,435 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:46,435 INFO Out dated connection ,size=0 - -2025-09-26 01:06:46,435 INFO Connection check task end - -2025-09-26 01:06:47,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:49,436 INFO Connection check task start - -2025-09-26 01:06:49,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:49,436 INFO Out dated connection ,size=0 - -2025-09-26 01:06:49,436 INFO Connection check task end - -2025-09-26 01:06:50,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:52,436 INFO Connection check task start - -2025-09-26 01:06:52,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:52,437 INFO Out dated connection ,size=0 - -2025-09-26 01:06:52,437 INFO Connection check task end - -2025-09-26 01:06:53,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:55,437 INFO Connection check task start - -2025-09-26 01:06:55,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:55,437 INFO Out dated connection ,size=0 - -2025-09-26 01:06:55,437 INFO Connection check task end - -2025-09-26 01:06:56,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:06:58,438 INFO Connection check task start - -2025-09-26 01:06:58,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:06:58,438 INFO Out dated connection ,size=0 - -2025-09-26 01:06:58,438 INFO Connection check task end - -2025-09-26 01:06:59,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:01,439 INFO Connection check task start - -2025-09-26 01:07:01,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:01,439 INFO Out dated connection ,size=0 - -2025-09-26 01:07:01,439 INFO Connection check task end - -2025-09-26 01:07:02,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:04,439 INFO Connection check task start - -2025-09-26 01:07:04,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:04,439 INFO Out dated connection ,size=0 - -2025-09-26 01:07:04,439 INFO Connection check task end - -2025-09-26 01:07:05,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:07,440 INFO Connection check task start - -2025-09-26 01:07:07,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:07,440 INFO Out dated connection ,size=0 - -2025-09-26 01:07:07,441 INFO Connection check task end - -2025-09-26 01:07:08,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:10,441 INFO Connection check task start - -2025-09-26 01:07:10,441 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:10,441 INFO Out dated connection ,size=0 - -2025-09-26 01:07:10,441 INFO Connection check task end - -2025-09-26 01:07:11,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:13,442 INFO Connection check task start - -2025-09-26 01:07:13,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:13,442 INFO Out dated connection ,size=0 - -2025-09-26 01:07:13,442 INFO Connection check task end - -2025-09-26 01:07:14,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:16,442 INFO Connection check task start - -2025-09-26 01:07:16,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:16,442 INFO Out dated connection ,size=0 - -2025-09-26 01:07:16,442 INFO Connection check task end - -2025-09-26 01:07:17,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:19,450 INFO Connection check task start - -2025-09-26 01:07:19,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:19,451 INFO Out dated connection ,size=0 - -2025-09-26 01:07:19,451 INFO Connection check task end - -2025-09-26 01:07:20,807 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:22,451 INFO Connection check task start - -2025-09-26 01:07:22,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:22,451 INFO Out dated connection ,size=0 - -2025-09-26 01:07:22,451 INFO Connection check task end - -2025-09-26 01:07:23,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:25,452 INFO Connection check task start - -2025-09-26 01:07:25,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:25,453 INFO Out dated connection ,size=0 - -2025-09-26 01:07:25,453 INFO Connection check task end - -2025-09-26 01:07:26,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:28,453 INFO Connection check task start - -2025-09-26 01:07:28,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:28,453 INFO Out dated connection ,size=0 - -2025-09-26 01:07:28,453 INFO Connection check task end - -2025-09-26 01:07:29,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:31,454 INFO Connection check task start - -2025-09-26 01:07:31,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:31,454 INFO Out dated connection ,size=0 - -2025-09-26 01:07:31,455 INFO Connection check task end - -2025-09-26 01:07:32,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:34,456 INFO Connection check task start - -2025-09-26 01:07:34,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:34,456 INFO Out dated connection ,size=0 - -2025-09-26 01:07:34,456 INFO Connection check task end - -2025-09-26 01:07:35,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:37,456 INFO Connection check task start - -2025-09-26 01:07:37,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:37,457 INFO Out dated connection ,size=0 - -2025-09-26 01:07:37,457 INFO Connection check task end - -2025-09-26 01:07:38,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:40,458 INFO Connection check task start - -2025-09-26 01:07:40,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:40,458 INFO Out dated connection ,size=0 - -2025-09-26 01:07:40,458 INFO Connection check task end - -2025-09-26 01:07:41,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:43,459 INFO Connection check task start - -2025-09-26 01:07:43,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:43,459 INFO Out dated connection ,size=0 - -2025-09-26 01:07:43,459 INFO Connection check task end - -2025-09-26 01:07:44,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:46,460 INFO Connection check task start - -2025-09-26 01:07:46,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:46,460 INFO Out dated connection ,size=0 - -2025-09-26 01:07:46,460 INFO Connection check task end - -2025-09-26 01:07:47,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:49,461 INFO Connection check task start - -2025-09-26 01:07:49,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:49,461 INFO Out dated connection ,size=0 - -2025-09-26 01:07:49,462 INFO Connection check task end - -2025-09-26 01:07:50,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:52,462 INFO Connection check task start - -2025-09-26 01:07:52,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:52,462 INFO Out dated connection ,size=0 - -2025-09-26 01:07:52,462 INFO Connection check task end - -2025-09-26 01:07:53,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:55,463 INFO Connection check task start - -2025-09-26 01:07:55,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:55,463 INFO Out dated connection ,size=0 - -2025-09-26 01:07:55,463 INFO Connection check task end - -2025-09-26 01:07:56,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:07:58,464 INFO Connection check task start - -2025-09-26 01:07:58,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:07:58,464 INFO Out dated connection ,size=0 - -2025-09-26 01:07:58,464 INFO Connection check task end - -2025-09-26 01:07:59,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:01,465 INFO Connection check task start - -2025-09-26 01:08:01,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:01,465 INFO Out dated connection ,size=0 - -2025-09-26 01:08:01,465 INFO Connection check task end - -2025-09-26 01:08:02,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:04,466 INFO Connection check task start - -2025-09-26 01:08:04,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:04,467 INFO Out dated connection ,size=0 - -2025-09-26 01:08:04,467 INFO Connection check task end - -2025-09-26 01:08:05,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:07,468 INFO Connection check task start - -2025-09-26 01:08:07,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:07,468 INFO Out dated connection ,size=0 - -2025-09-26 01:08:07,469 INFO Connection check task end - -2025-09-26 01:08:08,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:10,470 INFO Connection check task start - -2025-09-26 01:08:10,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:10,470 INFO Out dated connection ,size=0 - -2025-09-26 01:08:10,470 INFO Connection check task end - -2025-09-26 01:08:11,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:13,471 INFO Connection check task start - -2025-09-26 01:08:13,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:13,473 INFO Out dated connection ,size=0 - -2025-09-26 01:08:13,473 INFO Connection check task end - -2025-09-26 01:08:14,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:16,473 INFO Connection check task start - -2025-09-26 01:08:16,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:16,473 INFO Out dated connection ,size=0 - -2025-09-26 01:08:16,473 INFO Connection check task end - -2025-09-26 01:08:17,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:19,474 INFO Connection check task start - -2025-09-26 01:08:19,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:19,474 INFO Out dated connection ,size=0 - -2025-09-26 01:08:19,474 INFO Connection check task end - -2025-09-26 01:08:20,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:22,475 INFO Connection check task start - -2025-09-26 01:08:22,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:22,476 INFO Out dated connection ,size=0 - -2025-09-26 01:08:22,476 INFO Connection check task end - -2025-09-26 01:08:23,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:25,476 INFO Connection check task start - -2025-09-26 01:08:25,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:25,476 INFO Out dated connection ,size=0 - -2025-09-26 01:08:25,476 INFO Connection check task end - -2025-09-26 01:08:26,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:28,477 INFO Connection check task start - -2025-09-26 01:08:28,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:28,477 INFO Out dated connection ,size=0 - -2025-09-26 01:08:28,477 INFO Connection check task end - -2025-09-26 01:08:29,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:31,478 INFO Connection check task start - -2025-09-26 01:08:31,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:31,478 INFO Out dated connection ,size=0 - -2025-09-26 01:08:31,478 INFO Connection check task end - -2025-09-26 01:08:32,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:34,478 INFO Connection check task start - -2025-09-26 01:08:34,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:34,479 INFO Out dated connection ,size=0 - -2025-09-26 01:08:34,479 INFO Connection check task end - -2025-09-26 01:08:35,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:37,479 INFO Connection check task start - -2025-09-26 01:08:37,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:37,479 INFO Out dated connection ,size=0 - -2025-09-26 01:08:37,479 INFO Connection check task end - -2025-09-26 01:08:38,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:40,480 INFO Connection check task start - -2025-09-26 01:08:40,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:40,480 INFO Out dated connection ,size=0 - -2025-09-26 01:08:40,480 INFO Connection check task end - -2025-09-26 01:08:41,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:43,481 INFO Connection check task start - -2025-09-26 01:08:43,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:43,481 INFO Out dated connection ,size=0 - -2025-09-26 01:08:43,481 INFO Connection check task end - -2025-09-26 01:08:44,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:46,481 INFO Connection check task start - -2025-09-26 01:08:46,481 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:46,481 INFO Out dated connection ,size=0 - -2025-09-26 01:08:46,481 INFO Connection check task end - -2025-09-26 01:08:47,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:49,481 INFO Connection check task start - -2025-09-26 01:08:49,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:49,482 INFO Out dated connection ,size=0 - -2025-09-26 01:08:49,482 INFO Connection check task end - -2025-09-26 01:08:50,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:52,482 INFO Connection check task start - -2025-09-26 01:08:52,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:52,482 INFO Out dated connection ,size=0 - -2025-09-26 01:08:52,482 INFO Connection check task end - -2025-09-26 01:08:53,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:55,483 INFO Connection check task start - -2025-09-26 01:08:55,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:55,483 INFO Out dated connection ,size=0 - -2025-09-26 01:08:55,483 INFO Connection check task end - -2025-09-26 01:08:56,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:08:58,483 INFO Connection check task start - -2025-09-26 01:08:58,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:08:58,483 INFO Out dated connection ,size=0 - -2025-09-26 01:08:58,483 INFO Connection check task end - -2025-09-26 01:08:59,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:01,483 INFO Connection check task start - -2025-09-26 01:09:01,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:01,484 INFO Out dated connection ,size=0 - -2025-09-26 01:09:01,484 INFO Connection check task end - -2025-09-26 01:09:02,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:04,484 INFO Connection check task start - -2025-09-26 01:09:04,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:04,484 INFO Out dated connection ,size=0 - -2025-09-26 01:09:04,484 INFO Connection check task end - -2025-09-26 01:09:05,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:07,485 INFO Connection check task start - -2025-09-26 01:09:07,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:07,485 INFO Out dated connection ,size=0 - -2025-09-26 01:09:07,485 INFO Connection check task end - -2025-09-26 01:09:08,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:10,486 INFO Connection check task start - -2025-09-26 01:09:10,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:10,486 INFO Out dated connection ,size=0 - -2025-09-26 01:09:10,486 INFO Connection check task end - -2025-09-26 01:09:11,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:13,486 INFO Connection check task start - -2025-09-26 01:09:13,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:13,486 INFO Out dated connection ,size=0 - -2025-09-26 01:09:13,486 INFO Connection check task end - -2025-09-26 01:09:14,832 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:16,487 INFO Connection check task start - -2025-09-26 01:09:16,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:16,487 INFO Out dated connection ,size=0 - -2025-09-26 01:09:16,487 INFO Connection check task end - -2025-09-26 01:09:17,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:19,487 INFO Connection check task start - -2025-09-26 01:09:19,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:19,488 INFO Out dated connection ,size=0 - -2025-09-26 01:09:19,488 INFO Connection check task end - -2025-09-26 01:09:20,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:22,488 INFO Connection check task start - -2025-09-26 01:09:22,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:22,489 INFO Out dated connection ,size=0 - -2025-09-26 01:09:22,489 INFO Connection check task end - -2025-09-26 01:09:23,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:25,489 INFO Connection check task start - -2025-09-26 01:09:25,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:25,489 INFO Out dated connection ,size=0 - -2025-09-26 01:09:25,489 INFO Connection check task end - -2025-09-26 01:09:26,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:28,489 INFO Connection check task start - -2025-09-26 01:09:28,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:28,489 INFO Out dated connection ,size=0 - -2025-09-26 01:09:28,490 INFO Connection check task end - -2025-09-26 01:09:29,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:31,490 INFO Connection check task start - -2025-09-26 01:09:31,490 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:31,490 INFO Out dated connection ,size=0 - -2025-09-26 01:09:31,490 INFO Connection check task end - -2025-09-26 01:09:32,836 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:34,491 INFO Connection check task start - -2025-09-26 01:09:34,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:34,491 INFO Out dated connection ,size=0 - -2025-09-26 01:09:34,491 INFO Connection check task end - -2025-09-26 01:09:35,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:37,491 INFO Connection check task start - -2025-09-26 01:09:37,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:37,491 INFO Out dated connection ,size=0 - -2025-09-26 01:09:37,491 INFO Connection check task end - -2025-09-26 01:09:38,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:40,492 INFO Connection check task start - -2025-09-26 01:09:40,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:40,492 INFO Out dated connection ,size=0 - -2025-09-26 01:09:40,492 INFO Connection check task end - -2025-09-26 01:09:41,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:43,492 INFO Connection check task start - -2025-09-26 01:09:43,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:43,492 INFO Out dated connection ,size=0 - -2025-09-26 01:09:43,492 INFO Connection check task end - -2025-09-26 01:09:44,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:46,493 INFO Connection check task start - -2025-09-26 01:09:46,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:46,493 INFO Out dated connection ,size=0 - -2025-09-26 01:09:46,493 INFO Connection check task end - -2025-09-26 01:09:47,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:49,493 INFO Connection check task start - -2025-09-26 01:09:49,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:49,493 INFO Out dated connection ,size=0 - -2025-09-26 01:09:49,493 INFO Connection check task end - -2025-09-26 01:09:50,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:52,494 INFO Connection check task start - -2025-09-26 01:09:52,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:52,494 INFO Out dated connection ,size=0 - -2025-09-26 01:09:52,494 INFO Connection check task end - -2025-09-26 01:09:53,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:55,495 INFO Connection check task start - -2025-09-26 01:09:55,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:55,495 INFO Out dated connection ,size=0 - -2025-09-26 01:09:55,495 INFO Connection check task end - -2025-09-26 01:09:56,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:09:58,495 INFO Connection check task start - -2025-09-26 01:09:58,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:09:58,495 INFO Out dated connection ,size=0 - -2025-09-26 01:09:58,495 INFO Connection check task end - -2025-09-26 01:09:59,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:01,496 INFO Connection check task start - -2025-09-26 01:10:01,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:01,496 INFO Out dated connection ,size=0 - -2025-09-26 01:10:01,496 INFO Connection check task end - -2025-09-26 01:10:02,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:04,496 INFO Connection check task start - -2025-09-26 01:10:04,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:04,497 INFO Out dated connection ,size=0 - -2025-09-26 01:10:04,497 INFO Connection check task end - -2025-09-26 01:10:05,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:07,497 INFO Connection check task start - -2025-09-26 01:10:07,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:07,497 INFO Out dated connection ,size=0 - -2025-09-26 01:10:07,497 INFO Connection check task end - -2025-09-26 01:10:08,846 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:10,498 INFO Connection check task start - -2025-09-26 01:10:10,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:10,498 INFO Out dated connection ,size=0 - -2025-09-26 01:10:10,498 INFO Connection check task end - -2025-09-26 01:10:11,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:13,499 INFO Connection check task start - -2025-09-26 01:10:13,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:13,499 INFO Out dated connection ,size=0 - -2025-09-26 01:10:13,499 INFO Connection check task end - -2025-09-26 01:10:14,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:16,500 INFO Connection check task start - -2025-09-26 01:10:16,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:16,500 INFO Out dated connection ,size=0 - -2025-09-26 01:10:16,500 INFO Connection check task end - -2025-09-26 01:10:17,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:19,501 INFO Connection check task start - -2025-09-26 01:10:19,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:19,501 INFO Out dated connection ,size=0 - -2025-09-26 01:10:19,501 INFO Connection check task end - -2025-09-26 01:10:20,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:22,501 INFO Connection check task start - -2025-09-26 01:10:22,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:22,501 INFO Out dated connection ,size=0 - -2025-09-26 01:10:22,501 INFO Connection check task end - -2025-09-26 01:10:23,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:25,502 INFO Connection check task start - -2025-09-26 01:10:25,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:25,502 INFO Out dated connection ,size=0 - -2025-09-26 01:10:25,502 INFO Connection check task end - -2025-09-26 01:10:26,851 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:28,502 INFO Connection check task start - -2025-09-26 01:10:28,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:28,502 INFO Out dated connection ,size=0 - -2025-09-26 01:10:28,502 INFO Connection check task end - -2025-09-26 01:10:29,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:31,503 INFO Connection check task start - -2025-09-26 01:10:31,503 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:31,503 INFO Out dated connection ,size=0 - -2025-09-26 01:10:31,504 INFO Connection check task end - -2025-09-26 01:10:32,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:34,505 INFO Connection check task start - -2025-09-26 01:10:34,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:34,505 INFO Out dated connection ,size=0 - -2025-09-26 01:10:34,505 INFO Connection check task end - -2025-09-26 01:10:35,853 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:37,505 INFO Connection check task start - -2025-09-26 01:10:37,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:37,506 INFO Out dated connection ,size=0 - -2025-09-26 01:10:37,506 INFO Connection check task end - -2025-09-26 01:10:38,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:40,507 INFO Connection check task start - -2025-09-26 01:10:40,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:40,507 INFO Out dated connection ,size=0 - -2025-09-26 01:10:40,507 INFO Connection check task end - -2025-09-26 01:10:41,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:43,507 INFO Connection check task start - -2025-09-26 01:10:43,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:43,508 INFO Out dated connection ,size=0 - -2025-09-26 01:10:43,508 INFO Connection check task end - -2025-09-26 01:10:44,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:46,508 INFO Connection check task start - -2025-09-26 01:10:46,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:46,508 INFO Out dated connection ,size=0 - -2025-09-26 01:10:46,508 INFO Connection check task end - -2025-09-26 01:10:47,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:49,509 INFO Connection check task start - -2025-09-26 01:10:49,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:49,509 INFO Out dated connection ,size=0 - -2025-09-26 01:10:49,509 INFO Connection check task end - -2025-09-26 01:10:50,859 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:52,509 INFO Connection check task start - -2025-09-26 01:10:52,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:52,509 INFO Out dated connection ,size=0 - -2025-09-26 01:10:52,509 INFO Connection check task end - -2025-09-26 01:10:53,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:55,510 INFO Connection check task start - -2025-09-26 01:10:55,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:55,510 INFO Out dated connection ,size=0 - -2025-09-26 01:10:55,510 INFO Connection check task end - -2025-09-26 01:10:56,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:10:58,511 INFO Connection check task start - -2025-09-26 01:10:58,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:10:58,511 INFO Out dated connection ,size=0 - -2025-09-26 01:10:58,511 INFO Connection check task end - -2025-09-26 01:10:59,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:01,511 INFO Connection check task start - -2025-09-26 01:11:01,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:01,512 INFO Out dated connection ,size=0 - -2025-09-26 01:11:01,512 INFO Connection check task end - -2025-09-26 01:11:02,865 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:04,512 INFO Connection check task start - -2025-09-26 01:11:04,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:04,512 INFO Out dated connection ,size=0 - -2025-09-26 01:11:04,512 INFO Connection check task end - -2025-09-26 01:11:05,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:07,513 INFO Connection check task start - -2025-09-26 01:11:07,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:07,513 INFO Out dated connection ,size=0 - -2025-09-26 01:11:07,513 INFO Connection check task end - -2025-09-26 01:11:08,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:10,513 INFO Connection check task start - -2025-09-26 01:11:10,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:10,514 INFO Out dated connection ,size=0 - -2025-09-26 01:11:10,514 INFO Connection check task end - -2025-09-26 01:11:11,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:13,514 INFO Connection check task start - -2025-09-26 01:11:13,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:13,514 INFO Out dated connection ,size=0 - -2025-09-26 01:11:13,515 INFO Connection check task end - -2025-09-26 01:11:14,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:16,515 INFO Connection check task start - -2025-09-26 01:11:16,515 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:16,516 INFO Out dated connection ,size=0 - -2025-09-26 01:11:16,516 INFO Connection check task end - -2025-09-26 01:11:17,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:19,516 INFO Connection check task start - -2025-09-26 01:11:19,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:19,516 INFO Out dated connection ,size=0 - -2025-09-26 01:11:19,516 INFO Connection check task end - -2025-09-26 01:11:20,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:22,517 INFO Connection check task start - -2025-09-26 01:11:22,517 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:22,519 INFO Out dated connection ,size=0 - -2025-09-26 01:11:22,519 INFO Connection check task end - -2025-09-26 01:11:23,870 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:25,520 INFO Connection check task start - -2025-09-26 01:11:25,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:25,520 INFO Out dated connection ,size=0 - -2025-09-26 01:11:25,520 INFO Connection check task end - -2025-09-26 01:11:26,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:28,520 INFO Connection check task start - -2025-09-26 01:11:28,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:28,521 INFO Out dated connection ,size=0 - -2025-09-26 01:11:28,521 INFO Connection check task end - -2025-09-26 01:11:29,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:31,521 INFO Connection check task start - -2025-09-26 01:11:31,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:31,522 INFO Out dated connection ,size=0 - -2025-09-26 01:11:31,522 INFO Connection check task end - -2025-09-26 01:11:32,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:34,522 INFO Connection check task start - -2025-09-26 01:11:34,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:34,522 INFO Out dated connection ,size=0 - -2025-09-26 01:11:34,522 INFO Connection check task end - -2025-09-26 01:11:35,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:37,523 INFO Connection check task start - -2025-09-26 01:11:37,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:37,523 INFO Out dated connection ,size=0 - -2025-09-26 01:11:37,523 INFO Connection check task end - -2025-09-26 01:11:38,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:40,524 INFO Connection check task start - -2025-09-26 01:11:40,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:40,524 INFO Out dated connection ,size=0 - -2025-09-26 01:11:40,524 INFO Connection check task end - -2025-09-26 01:11:41,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:43,525 INFO Connection check task start - -2025-09-26 01:11:43,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:43,525 INFO Out dated connection ,size=0 - -2025-09-26 01:11:43,525 INFO Connection check task end - -2025-09-26 01:11:44,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:46,526 INFO Connection check task start - -2025-09-26 01:11:46,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:46,526 INFO Out dated connection ,size=0 - -2025-09-26 01:11:46,526 INFO Connection check task end - -2025-09-26 01:11:47,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:49,527 INFO Connection check task start - -2025-09-26 01:11:49,527 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:49,527 INFO Out dated connection ,size=0 - -2025-09-26 01:11:49,527 INFO Connection check task end - -2025-09-26 01:11:50,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:52,527 INFO Connection check task start - -2025-09-26 01:11:52,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:52,528 INFO Out dated connection ,size=0 - -2025-09-26 01:11:52,528 INFO Connection check task end - -2025-09-26 01:11:53,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:55,528 INFO Connection check task start - -2025-09-26 01:11:55,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:55,528 INFO Out dated connection ,size=0 - -2025-09-26 01:11:55,528 INFO Connection check task end - -2025-09-26 01:11:56,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:11:58,528 INFO Connection check task start - -2025-09-26 01:11:58,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:11:58,529 INFO Out dated connection ,size=0 - -2025-09-26 01:11:58,529 INFO Connection check task end - -2025-09-26 01:11:59,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:01,529 INFO Connection check task start - -2025-09-26 01:12:01,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:01,529 INFO Out dated connection ,size=0 - -2025-09-26 01:12:01,529 INFO Connection check task end - -2025-09-26 01:12:02,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:04,530 INFO Connection check task start - -2025-09-26 01:12:04,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:04,530 INFO Out dated connection ,size=0 - -2025-09-26 01:12:04,530 INFO Connection check task end - -2025-09-26 01:12:05,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:07,530 INFO Connection check task start - -2025-09-26 01:12:07,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:07,531 INFO Out dated connection ,size=0 - -2025-09-26 01:12:07,531 INFO Connection check task end - -2025-09-26 01:12:08,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:10,531 INFO Connection check task start - -2025-09-26 01:12:10,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:10,532 INFO Out dated connection ,size=0 - -2025-09-26 01:12:10,532 INFO Connection check task end - -2025-09-26 01:12:11,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:13,532 INFO Connection check task start - -2025-09-26 01:12:13,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:13,532 INFO Out dated connection ,size=0 - -2025-09-26 01:12:13,532 INFO Connection check task end - -2025-09-26 01:12:14,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:16,532 INFO Connection check task start - -2025-09-26 01:12:16,532 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:16,532 INFO Out dated connection ,size=0 - -2025-09-26 01:12:16,533 INFO Connection check task end - -2025-09-26 01:12:17,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:19,533 INFO Connection check task start - -2025-09-26 01:12:19,533 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:19,533 INFO Out dated connection ,size=0 - -2025-09-26 01:12:19,533 INFO Connection check task end - -2025-09-26 01:12:20,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:22,534 INFO Connection check task start - -2025-09-26 01:12:22,534 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:22,534 INFO Out dated connection ,size=0 - -2025-09-26 01:12:22,534 INFO Connection check task end - -2025-09-26 01:12:23,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:25,535 INFO Connection check task start - -2025-09-26 01:12:25,535 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:25,535 INFO Out dated connection ,size=0 - -2025-09-26 01:12:25,535 INFO Connection check task end - -2025-09-26 01:12:26,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:28,536 INFO Connection check task start - -2025-09-26 01:12:28,536 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:28,536 INFO Out dated connection ,size=0 - -2025-09-26 01:12:28,536 INFO Connection check task end - -2025-09-26 01:12:29,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:31,537 INFO Connection check task start - -2025-09-26 01:12:31,537 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:31,537 INFO Out dated connection ,size=0 - -2025-09-26 01:12:31,537 INFO Connection check task end - -2025-09-26 01:12:32,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:34,538 INFO Connection check task start - -2025-09-26 01:12:34,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:34,539 INFO Out dated connection ,size=0 - -2025-09-26 01:12:34,539 INFO Connection check task end - -2025-09-26 01:12:35,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:37,539 INFO Connection check task start - -2025-09-26 01:12:37,539 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:37,539 INFO Out dated connection ,size=0 - -2025-09-26 01:12:37,539 INFO Connection check task end - -2025-09-26 01:12:38,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:40,540 INFO Connection check task start - -2025-09-26 01:12:40,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:40,540 INFO Out dated connection ,size=0 - -2025-09-26 01:12:40,540 INFO Connection check task end - -2025-09-26 01:12:41,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:43,540 INFO Connection check task start - -2025-09-26 01:12:43,540 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:43,540 INFO Out dated connection ,size=0 - -2025-09-26 01:12:43,540 INFO Connection check task end - -2025-09-26 01:12:44,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:46,541 INFO Connection check task start - -2025-09-26 01:12:46,541 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:46,542 INFO Out dated connection ,size=0 - -2025-09-26 01:12:46,542 INFO Connection check task end - -2025-09-26 01:12:47,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:49,542 INFO Connection check task start - -2025-09-26 01:12:49,542 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:49,542 INFO Out dated connection ,size=0 - -2025-09-26 01:12:49,542 INFO Connection check task end - -2025-09-26 01:12:50,889 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:52,542 INFO Connection check task start - -2025-09-26 01:12:52,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:52,543 INFO Out dated connection ,size=0 - -2025-09-26 01:12:52,543 INFO Connection check task end - -2025-09-26 01:12:53,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:55,543 INFO Connection check task start - -2025-09-26 01:12:55,543 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:55,543 INFO Out dated connection ,size=0 - -2025-09-26 01:12:55,544 INFO Connection check task end - -2025-09-26 01:12:56,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:12:58,544 INFO Connection check task start - -2025-09-26 01:12:58,544 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:12:58,544 INFO Out dated connection ,size=0 - -2025-09-26 01:12:58,544 INFO Connection check task end - -2025-09-26 01:12:59,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:01,544 INFO Connection check task start - -2025-09-26 01:13:01,545 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:01,545 INFO Out dated connection ,size=0 - -2025-09-26 01:13:01,545 INFO Connection check task end - -2025-09-26 01:13:02,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:04,546 INFO Connection check task start - -2025-09-26 01:13:04,546 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:04,546 INFO Out dated connection ,size=0 - -2025-09-26 01:13:04,546 INFO Connection check task end - -2025-09-26 01:13:05,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:07,558 INFO Connection check task start - -2025-09-26 01:13:07,558 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:07,559 INFO Out dated connection ,size=0 - -2025-09-26 01:13:07,559 INFO Connection check task end - -2025-09-26 01:13:08,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:10,560 INFO Connection check task start - -2025-09-26 01:13:10,560 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:10,560 INFO Out dated connection ,size=0 - -2025-09-26 01:13:10,560 INFO Connection check task end - -2025-09-26 01:13:11,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:13,561 INFO Connection check task start - -2025-09-26 01:13:13,561 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:13,561 INFO Out dated connection ,size=0 - -2025-09-26 01:13:13,561 INFO Connection check task end - -2025-09-26 01:13:14,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:16,561 INFO Connection check task start - -2025-09-26 01:13:16,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:16,563 INFO Out dated connection ,size=0 - -2025-09-26 01:13:16,563 INFO Connection check task end - -2025-09-26 01:13:17,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:19,563 INFO Connection check task start - -2025-09-26 01:13:19,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:19,563 INFO Out dated connection ,size=0 - -2025-09-26 01:13:19,563 INFO Connection check task end - -2025-09-26 01:13:20,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:22,563 INFO Connection check task start - -2025-09-26 01:13:22,563 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:22,563 INFO Out dated connection ,size=0 - -2025-09-26 01:13:22,563 INFO Connection check task end - -2025-09-26 01:13:23,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:25,564 INFO Connection check task start - -2025-09-26 01:13:25,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:25,565 INFO Out dated connection ,size=0 - -2025-09-26 01:13:25,565 INFO Connection check task end - -2025-09-26 01:13:26,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:28,565 INFO Connection check task start - -2025-09-26 01:13:28,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:28,565 INFO Out dated connection ,size=0 - -2025-09-26 01:13:28,566 INFO Connection check task end - -2025-09-26 01:13:29,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:31,566 INFO Connection check task start - -2025-09-26 01:13:31,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:31,566 INFO Out dated connection ,size=0 - -2025-09-26 01:13:31,566 INFO Connection check task end - -2025-09-26 01:13:32,902 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:34,567 INFO Connection check task start - -2025-09-26 01:13:34,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:34,567 INFO Out dated connection ,size=0 - -2025-09-26 01:13:34,567 INFO Connection check task end - -2025-09-26 01:13:35,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:37,567 INFO Connection check task start - -2025-09-26 01:13:37,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:37,567 INFO Out dated connection ,size=0 - -2025-09-26 01:13:37,567 INFO Connection check task end - -2025-09-26 01:13:38,904 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:40,568 INFO Connection check task start - -2025-09-26 01:13:40,569 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:40,569 INFO Out dated connection ,size=0 - -2025-09-26 01:13:40,569 INFO Connection check task end - -2025-09-26 01:13:41,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:43,569 INFO Connection check task start - -2025-09-26 01:13:43,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:43,570 INFO Out dated connection ,size=0 - -2025-09-26 01:13:43,570 INFO Connection check task end - -2025-09-26 01:13:44,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:46,570 INFO Connection check task start - -2025-09-26 01:13:46,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:46,570 INFO Out dated connection ,size=0 - -2025-09-26 01:13:46,570 INFO Connection check task end - -2025-09-26 01:13:47,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:49,571 INFO Connection check task start - -2025-09-26 01:13:49,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:49,572 INFO Out dated connection ,size=0 - -2025-09-26 01:13:49,572 INFO Connection check task end - -2025-09-26 01:13:50,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:52,572 INFO Connection check task start - -2025-09-26 01:13:52,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:52,572 INFO Out dated connection ,size=0 - -2025-09-26 01:13:52,572 INFO Connection check task end - -2025-09-26 01:13:53,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:55,573 INFO Connection check task start - -2025-09-26 01:13:55,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:55,574 INFO Out dated connection ,size=0 - -2025-09-26 01:13:55,574 INFO Connection check task end - -2025-09-26 01:13:56,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:13:58,574 INFO Connection check task start - -2025-09-26 01:13:58,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:13:58,574 INFO Out dated connection ,size=0 - -2025-09-26 01:13:58,574 INFO Connection check task end - -2025-09-26 01:13:59,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:01,575 INFO Connection check task start - -2025-09-26 01:14:01,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:01,575 INFO Out dated connection ,size=0 - -2025-09-26 01:14:01,575 INFO Connection check task end - -2025-09-26 01:14:02,911 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:04,580 INFO Connection check task start - -2025-09-26 01:14:04,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:04,582 INFO Out dated connection ,size=0 - -2025-09-26 01:14:04,582 INFO Connection check task end - -2025-09-26 01:14:05,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:07,582 INFO Connection check task start - -2025-09-26 01:14:07,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:07,582 INFO Out dated connection ,size=0 - -2025-09-26 01:14:07,582 INFO Connection check task end - -2025-09-26 01:14:08,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:10,582 INFO Connection check task start - -2025-09-26 01:14:10,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:10,603 INFO Out dated connection ,size=0 - -2025-09-26 01:14:10,603 INFO Connection check task end - -2025-09-26 01:14:11,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:13,603 INFO Connection check task start - -2025-09-26 01:14:13,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:13,603 INFO Out dated connection ,size=0 - -2025-09-26 01:14:13,603 INFO Connection check task end - -2025-09-26 01:14:14,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:16,603 INFO Connection check task start - -2025-09-26 01:14:16,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:16,604 INFO Out dated connection ,size=0 - -2025-09-26 01:14:16,604 INFO Connection check task end - -2025-09-26 01:14:17,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:19,604 INFO Connection check task start - -2025-09-26 01:14:19,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:19,604 INFO Out dated connection ,size=0 - -2025-09-26 01:14:19,604 INFO Connection check task end - -2025-09-26 01:14:20,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:22,604 INFO Connection check task start - -2025-09-26 01:14:22,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:22,605 INFO Out dated connection ,size=0 - -2025-09-26 01:14:22,605 INFO Connection check task end - -2025-09-26 01:14:23,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:25,605 INFO Connection check task start - -2025-09-26 01:14:25,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:25,605 INFO Out dated connection ,size=0 - -2025-09-26 01:14:25,605 INFO Connection check task end - -2025-09-26 01:14:26,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:28,606 INFO Connection check task start - -2025-09-26 01:14:28,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:28,607 INFO Out dated connection ,size=0 - -2025-09-26 01:14:28,607 INFO Connection check task end - -2025-09-26 01:14:29,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:31,607 INFO Connection check task start - -2025-09-26 01:14:31,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:31,607 INFO Out dated connection ,size=0 - -2025-09-26 01:14:31,607 INFO Connection check task end - -2025-09-26 01:14:32,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:34,607 INFO Connection check task start - -2025-09-26 01:14:34,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:34,608 INFO Out dated connection ,size=0 - -2025-09-26 01:14:34,608 INFO Connection check task end - -2025-09-26 01:14:35,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:37,609 INFO Connection check task start - -2025-09-26 01:14:37,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:37,609 INFO Out dated connection ,size=0 - -2025-09-26 01:14:37,609 INFO Connection check task end - -2025-09-26 01:14:38,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:40,611 INFO Connection check task start - -2025-09-26 01:14:40,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:40,611 INFO Out dated connection ,size=0 - -2025-09-26 01:14:40,611 INFO Connection check task end - -2025-09-26 01:14:41,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:43,612 INFO Connection check task start - -2025-09-26 01:14:43,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:43,612 INFO Out dated connection ,size=0 - -2025-09-26 01:14:43,612 INFO Connection check task end - -2025-09-26 01:14:44,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:46,613 INFO Connection check task start - -2025-09-26 01:14:46,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:46,613 INFO Out dated connection ,size=0 - -2025-09-26 01:14:46,613 INFO Connection check task end - -2025-09-26 01:14:47,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:49,614 INFO Connection check task start - -2025-09-26 01:14:49,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:49,614 INFO Out dated connection ,size=0 - -2025-09-26 01:14:49,614 INFO Connection check task end - -2025-09-26 01:14:50,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:52,615 INFO Connection check task start - -2025-09-26 01:14:52,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:52,615 INFO Out dated connection ,size=0 - -2025-09-26 01:14:52,615 INFO Connection check task end - -2025-09-26 01:14:53,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:55,616 INFO Connection check task start - -2025-09-26 01:14:55,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:55,616 INFO Out dated connection ,size=0 - -2025-09-26 01:14:55,616 INFO Connection check task end - -2025-09-26 01:14:56,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:14:58,617 INFO Connection check task start - -2025-09-26 01:14:58,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:14:58,617 INFO Out dated connection ,size=0 - -2025-09-26 01:14:58,617 INFO Connection check task end - -2025-09-26 01:14:59,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:01,617 INFO Connection check task start - -2025-09-26 01:15:01,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:01,618 INFO Out dated connection ,size=0 - -2025-09-26 01:15:01,618 INFO Connection check task end - -2025-09-26 01:15:02,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:04,618 INFO Connection check task start - -2025-09-26 01:15:04,618 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:04,618 INFO Out dated connection ,size=0 - -2025-09-26 01:15:04,618 INFO Connection check task end - -2025-09-26 01:15:05,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:07,619 INFO Connection check task start - -2025-09-26 01:15:07,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:07,619 INFO Out dated connection ,size=0 - -2025-09-26 01:15:07,619 INFO Connection check task end - -2025-09-26 01:15:08,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:10,620 INFO Connection check task start - -2025-09-26 01:15:10,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:10,620 INFO Out dated connection ,size=0 - -2025-09-26 01:15:10,620 INFO Connection check task end - -2025-09-26 01:15:11,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:13,621 INFO Connection check task start - -2025-09-26 01:15:13,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:13,621 INFO Out dated connection ,size=0 - -2025-09-26 01:15:13,621 INFO Connection check task end - -2025-09-26 01:15:14,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:16,621 INFO Connection check task start - -2025-09-26 01:15:16,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:16,622 INFO Out dated connection ,size=0 - -2025-09-26 01:15:16,622 INFO Connection check task end - -2025-09-26 01:15:17,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:19,622 INFO Connection check task start - -2025-09-26 01:15:19,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:19,622 INFO Out dated connection ,size=0 - -2025-09-26 01:15:19,622 INFO Connection check task end - -2025-09-26 01:15:20,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:22,622 INFO Connection check task start - -2025-09-26 01:15:22,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:22,623 INFO Out dated connection ,size=0 - -2025-09-26 01:15:22,623 INFO Connection check task end - -2025-09-26 01:15:23,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:25,623 INFO Connection check task start - -2025-09-26 01:15:25,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:25,623 INFO Out dated connection ,size=0 - -2025-09-26 01:15:25,623 INFO Connection check task end - -2025-09-26 01:15:26,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:28,623 INFO Connection check task start - -2025-09-26 01:15:28,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:28,623 INFO Out dated connection ,size=0 - -2025-09-26 01:15:28,623 INFO Connection check task end - -2025-09-26 01:15:29,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:31,624 INFO Connection check task start - -2025-09-26 01:15:31,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:31,624 INFO Out dated connection ,size=0 - -2025-09-26 01:15:31,624 INFO Connection check task end - -2025-09-26 01:15:32,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:34,626 INFO Connection check task start - -2025-09-26 01:15:34,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:34,626 INFO Out dated connection ,size=0 - -2025-09-26 01:15:34,626 INFO Connection check task end - -2025-09-26 01:15:35,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:37,627 INFO Connection check task start - -2025-09-26 01:15:37,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:37,628 INFO Out dated connection ,size=0 - -2025-09-26 01:15:37,628 INFO Connection check task end - -2025-09-26 01:15:38,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:40,628 INFO Connection check task start - -2025-09-26 01:15:40,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:40,628 INFO Out dated connection ,size=0 - -2025-09-26 01:15:40,629 INFO Connection check task end - -2025-09-26 01:15:41,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:43,629 INFO Connection check task start - -2025-09-26 01:15:43,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:43,629 INFO Out dated connection ,size=0 - -2025-09-26 01:15:43,629 INFO Connection check task end - -2025-09-26 01:15:44,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:46,629 INFO Connection check task start - -2025-09-26 01:15:46,629 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:46,629 INFO Out dated connection ,size=0 - -2025-09-26 01:15:46,629 INFO Connection check task end - -2025-09-26 01:15:47,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:49,630 INFO Connection check task start - -2025-09-26 01:15:49,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:49,630 INFO Out dated connection ,size=0 - -2025-09-26 01:15:49,630 INFO Connection check task end - -2025-09-26 01:15:50,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:52,631 INFO Connection check task start - -2025-09-26 01:15:52,631 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:52,631 INFO Out dated connection ,size=0 - -2025-09-26 01:15:52,631 INFO Connection check task end - -2025-09-26 01:15:53,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:55,633 INFO Connection check task start - -2025-09-26 01:15:55,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:55,633 INFO Out dated connection ,size=0 - -2025-09-26 01:15:55,633 INFO Connection check task end - -2025-09-26 01:15:56,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:15:58,634 INFO Connection check task start - -2025-09-26 01:15:58,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:15:58,634 INFO Out dated connection ,size=0 - -2025-09-26 01:15:58,634 INFO Connection check task end - -2025-09-26 01:15:59,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:01,634 INFO Connection check task start - -2025-09-26 01:16:01,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:01,635 INFO Out dated connection ,size=0 - -2025-09-26 01:16:01,635 INFO Connection check task end - -2025-09-26 01:16:02,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:04,635 INFO Connection check task start - -2025-09-26 01:16:04,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:04,635 INFO Out dated connection ,size=0 - -2025-09-26 01:16:04,635 INFO Connection check task end - -2025-09-26 01:16:05,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:07,635 INFO Connection check task start - -2025-09-26 01:16:07,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:07,635 INFO Out dated connection ,size=0 - -2025-09-26 01:16:07,636 INFO Connection check task end - -2025-09-26 01:16:08,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:10,636 INFO Connection check task start - -2025-09-26 01:16:10,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:10,636 INFO Out dated connection ,size=0 - -2025-09-26 01:16:10,636 INFO Connection check task end - -2025-09-26 01:16:11,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:13,636 INFO Connection check task start - -2025-09-26 01:16:13,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:13,636 INFO Out dated connection ,size=0 - -2025-09-26 01:16:13,636 INFO Connection check task end - -2025-09-26 01:16:14,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:16,637 INFO Connection check task start - -2025-09-26 01:16:16,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:16,637 INFO Out dated connection ,size=0 - -2025-09-26 01:16:16,637 INFO Connection check task end - -2025-09-26 01:16:17,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:19,638 INFO Connection check task start - -2025-09-26 01:16:19,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:19,638 INFO Out dated connection ,size=0 - -2025-09-26 01:16:19,638 INFO Connection check task end - -2025-09-26 01:16:20,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:22,638 INFO Connection check task start - -2025-09-26 01:16:22,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:22,639 INFO Out dated connection ,size=0 - -2025-09-26 01:16:22,639 INFO Connection check task end - -2025-09-26 01:16:23,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:25,640 INFO Connection check task start - -2025-09-26 01:16:25,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:25,640 INFO Out dated connection ,size=0 - -2025-09-26 01:16:25,640 INFO Connection check task end - -2025-09-26 01:16:26,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:28,641 INFO Connection check task start - -2025-09-26 01:16:28,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:28,641 INFO Out dated connection ,size=0 - -2025-09-26 01:16:28,642 INFO Connection check task end - -2025-09-26 01:16:29,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:31,642 INFO Connection check task start - -2025-09-26 01:16:31,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:31,642 INFO Out dated connection ,size=0 - -2025-09-26 01:16:31,643 INFO Connection check task end - -2025-09-26 01:16:32,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:34,643 INFO Connection check task start - -2025-09-26 01:16:34,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:34,643 INFO Out dated connection ,size=0 - -2025-09-26 01:16:34,643 INFO Connection check task end - -2025-09-26 01:16:35,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:37,653 INFO Connection check task start - -2025-09-26 01:16:37,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:37,657 INFO Out dated connection ,size=0 - -2025-09-26 01:16:37,657 INFO Connection check task end - -2025-09-26 01:16:38,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:40,659 INFO Connection check task start - -2025-09-26 01:16:40,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:40,659 INFO Out dated connection ,size=0 - -2025-09-26 01:16:40,659 INFO Connection check task end - -2025-09-26 01:16:41,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:43,659 INFO Connection check task start - -2025-09-26 01:16:43,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:43,660 INFO Out dated connection ,size=0 - -2025-09-26 01:16:43,660 INFO Connection check task end - -2025-09-26 01:16:44,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:46,660 INFO Connection check task start - -2025-09-26 01:16:46,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:46,660 INFO Out dated connection ,size=0 - -2025-09-26 01:16:46,660 INFO Connection check task end - -2025-09-26 01:16:47,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:49,660 INFO Connection check task start - -2025-09-26 01:16:49,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:49,661 INFO Out dated connection ,size=0 - -2025-09-26 01:16:49,661 INFO Connection check task end - -2025-09-26 01:16:50,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:52,662 INFO Connection check task start - -2025-09-26 01:16:52,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:52,662 INFO Out dated connection ,size=0 - -2025-09-26 01:16:52,662 INFO Connection check task end - -2025-09-26 01:16:53,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:55,663 INFO Connection check task start - -2025-09-26 01:16:55,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:55,663 INFO Out dated connection ,size=0 - -2025-09-26 01:16:55,663 INFO Connection check task end - -2025-09-26 01:16:56,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:16:58,665 INFO Connection check task start - -2025-09-26 01:16:58,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:16:58,665 INFO Out dated connection ,size=0 - -2025-09-26 01:16:58,665 INFO Connection check task end - -2025-09-26 01:16:59,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:01,665 INFO Connection check task start - -2025-09-26 01:17:01,665 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:01,665 INFO Out dated connection ,size=0 - -2025-09-26 01:17:01,665 INFO Connection check task end - -2025-09-26 01:17:02,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:04,666 INFO Connection check task start - -2025-09-26 01:17:04,667 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:04,667 INFO Out dated connection ,size=0 - -2025-09-26 01:17:04,667 INFO Connection check task end - -2025-09-26 01:17:05,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:07,668 INFO Connection check task start - -2025-09-26 01:17:07,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:07,681 INFO Out dated connection ,size=0 - -2025-09-26 01:17:07,681 INFO Connection check task end - -2025-09-26 01:17:08,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:10,681 INFO Connection check task start - -2025-09-26 01:17:10,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:10,682 INFO Out dated connection ,size=0 - -2025-09-26 01:17:10,682 INFO Connection check task end - -2025-09-26 01:17:11,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:13,683 INFO Connection check task start - -2025-09-26 01:17:13,683 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:13,683 INFO Out dated connection ,size=0 - -2025-09-26 01:17:13,683 INFO Connection check task end - -2025-09-26 01:17:14,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:16,684 INFO Connection check task start - -2025-09-26 01:17:16,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:16,685 INFO Out dated connection ,size=0 - -2025-09-26 01:17:16,685 INFO Connection check task end - -2025-09-26 01:17:17,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:19,686 INFO Connection check task start - -2025-09-26 01:17:19,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:19,686 INFO Out dated connection ,size=0 - -2025-09-26 01:17:19,686 INFO Connection check task end - -2025-09-26 01:17:20,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:22,688 INFO Connection check task start - -2025-09-26 01:17:22,688 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:22,688 INFO Out dated connection ,size=0 - -2025-09-26 01:17:22,689 INFO Connection check task end - -2025-09-26 01:17:23,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:25,689 INFO Connection check task start - -2025-09-26 01:17:25,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:25,690 INFO Out dated connection ,size=0 - -2025-09-26 01:17:25,690 INFO Connection check task end - -2025-09-26 01:17:26,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:28,690 INFO Connection check task start - -2025-09-26 01:17:28,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:28,691 INFO Out dated connection ,size=0 - -2025-09-26 01:17:28,691 INFO Connection check task end - -2025-09-26 01:17:29,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:31,691 INFO Connection check task start - -2025-09-26 01:17:31,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:31,691 INFO Out dated connection ,size=0 - -2025-09-26 01:17:31,691 INFO Connection check task end - -2025-09-26 01:17:32,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:34,692 INFO Connection check task start - -2025-09-26 01:17:34,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:34,705 INFO Out dated connection ,size=0 - -2025-09-26 01:17:34,705 INFO Connection check task end - -2025-09-26 01:17:35,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:37,706 INFO Connection check task start - -2025-09-26 01:17:37,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:37,706 INFO Out dated connection ,size=0 - -2025-09-26 01:17:37,707 INFO Connection check task end - -2025-09-26 01:17:38,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:40,707 INFO Connection check task start - -2025-09-26 01:17:40,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:40,707 INFO Out dated connection ,size=0 - -2025-09-26 01:17:40,707 INFO Connection check task end - -2025-09-26 01:17:41,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:43,707 INFO Connection check task start - -2025-09-26 01:17:43,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:43,707 INFO Out dated connection ,size=0 - -2025-09-26 01:17:43,707 INFO Connection check task end - -2025-09-26 01:17:44,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:46,708 INFO Connection check task start - -2025-09-26 01:17:46,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:46,708 INFO Out dated connection ,size=0 - -2025-09-26 01:17:46,708 INFO Connection check task end - -2025-09-26 01:17:47,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:49,708 INFO Connection check task start - -2025-09-26 01:17:49,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:49,709 INFO Out dated connection ,size=0 - -2025-09-26 01:17:49,709 INFO Connection check task end - -2025-09-26 01:17:50,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:52,709 INFO Connection check task start - -2025-09-26 01:17:52,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:52,710 INFO Out dated connection ,size=0 - -2025-09-26 01:17:52,710 INFO Connection check task end - -2025-09-26 01:17:53,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:55,710 INFO Connection check task start - -2025-09-26 01:17:55,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:55,710 INFO Out dated connection ,size=0 - -2025-09-26 01:17:55,710 INFO Connection check task end - -2025-09-26 01:17:56,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:17:58,739 INFO Connection check task start - -2025-09-26 01:17:58,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:17:58,739 INFO Out dated connection ,size=0 - -2025-09-26 01:17:58,739 INFO Connection check task end - -2025-09-26 01:17:59,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:01,739 INFO Connection check task start - -2025-09-26 01:18:01,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:01,739 INFO Out dated connection ,size=0 - -2025-09-26 01:18:01,739 INFO Connection check task end - -2025-09-26 01:18:02,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:04,740 INFO Connection check task start - -2025-09-26 01:18:04,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:04,740 INFO Out dated connection ,size=0 - -2025-09-26 01:18:04,740 INFO Connection check task end - -2025-09-26 01:18:05,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:07,740 INFO Connection check task start - -2025-09-26 01:18:07,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:07,740 INFO Out dated connection ,size=0 - -2025-09-26 01:18:07,740 INFO Connection check task end - -2025-09-26 01:18:08,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:10,741 INFO Connection check task start - -2025-09-26 01:18:10,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:10,741 INFO Out dated connection ,size=0 - -2025-09-26 01:18:10,741 INFO Connection check task end - -2025-09-26 01:18:11,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:13,741 INFO Connection check task start - -2025-09-26 01:18:13,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:13,741 INFO Out dated connection ,size=0 - -2025-09-26 01:18:13,741 INFO Connection check task end - -2025-09-26 01:18:14,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:16,741 INFO Connection check task start - -2025-09-26 01:18:16,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:16,741 INFO Out dated connection ,size=0 - -2025-09-26 01:18:16,741 INFO Connection check task end - -2025-09-26 01:18:17,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:19,741 INFO Connection check task start - -2025-09-26 01:18:19,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:19,742 INFO Out dated connection ,size=0 - -2025-09-26 01:18:19,742 INFO Connection check task end - -2025-09-26 01:18:20,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:22,742 INFO Connection check task start - -2025-09-26 01:18:22,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:22,742 INFO Out dated connection ,size=0 - -2025-09-26 01:18:22,742 INFO Connection check task end - -2025-09-26 01:18:23,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:25,742 INFO Connection check task start - -2025-09-26 01:18:25,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:25,742 INFO Out dated connection ,size=0 - -2025-09-26 01:18:25,742 INFO Connection check task end - -2025-09-26 01:18:26,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:28,743 INFO Connection check task start - -2025-09-26 01:18:28,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:28,743 INFO Out dated connection ,size=0 - -2025-09-26 01:18:28,743 INFO Connection check task end - -2025-09-26 01:18:29,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:31,743 INFO Connection check task start - -2025-09-26 01:18:31,743 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:31,743 INFO Out dated connection ,size=0 - -2025-09-26 01:18:31,743 INFO Connection check task end - -2025-09-26 01:18:32,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:34,744 INFO Connection check task start - -2025-09-26 01:18:34,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:34,744 INFO Out dated connection ,size=0 - -2025-09-26 01:18:34,744 INFO Connection check task end - -2025-09-26 01:18:35,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:37,744 INFO Connection check task start - -2025-09-26 01:18:37,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:37,744 INFO Out dated connection ,size=0 - -2025-09-26 01:18:37,744 INFO Connection check task end - -2025-09-26 01:18:38,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:40,745 INFO Connection check task start - -2025-09-26 01:18:40,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:40,745 INFO Out dated connection ,size=0 - -2025-09-26 01:18:40,745 INFO Connection check task end - -2025-09-26 01:18:42,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:43,745 INFO Connection check task start - -2025-09-26 01:18:43,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:43,745 INFO Out dated connection ,size=0 - -2025-09-26 01:18:43,745 INFO Connection check task end - -2025-09-26 01:18:45,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:46,746 INFO Connection check task start - -2025-09-26 01:18:46,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:46,746 INFO Out dated connection ,size=0 - -2025-09-26 01:18:46,746 INFO Connection check task end - -2025-09-26 01:18:48,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:49,746 INFO Connection check task start - -2025-09-26 01:18:49,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:49,746 INFO Out dated connection ,size=0 - -2025-09-26 01:18:49,746 INFO Connection check task end - -2025-09-26 01:18:51,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:52,747 INFO Connection check task start - -2025-09-26 01:18:52,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:52,748 INFO Out dated connection ,size=0 - -2025-09-26 01:18:52,748 INFO Connection check task end - -2025-09-26 01:18:54,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:55,748 INFO Connection check task start - -2025-09-26 01:18:55,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:55,748 INFO Out dated connection ,size=0 - -2025-09-26 01:18:55,748 INFO Connection check task end - -2025-09-26 01:18:57,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:18:58,749 INFO Connection check task start - -2025-09-26 01:18:58,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:18:58,749 INFO Out dated connection ,size=0 - -2025-09-26 01:18:58,749 INFO Connection check task end - -2025-09-26 01:19:00,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:01,749 INFO Connection check task start - -2025-09-26 01:19:01,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:01,750 INFO Out dated connection ,size=0 - -2025-09-26 01:19:01,750 INFO Connection check task end - -2025-09-26 01:19:03,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:04,750 INFO Connection check task start - -2025-09-26 01:19:04,750 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:04,750 INFO Out dated connection ,size=0 - -2025-09-26 01:19:04,750 INFO Connection check task end - -2025-09-26 01:19:06,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:07,751 INFO Connection check task start - -2025-09-26 01:19:07,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:07,751 INFO Out dated connection ,size=0 - -2025-09-26 01:19:07,751 INFO Connection check task end - -2025-09-26 01:19:09,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:10,752 INFO Connection check task start - -2025-09-26 01:19:10,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:10,752 INFO Out dated connection ,size=0 - -2025-09-26 01:19:10,752 INFO Connection check task end - -2025-09-26 01:19:12,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:13,752 INFO Connection check task start - -2025-09-26 01:19:13,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:13,753 INFO Out dated connection ,size=0 - -2025-09-26 01:19:13,753 INFO Connection check task end - -2025-09-26 01:19:15,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:16,753 INFO Connection check task start - -2025-09-26 01:19:16,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:16,753 INFO Out dated connection ,size=0 - -2025-09-26 01:19:16,753 INFO Connection check task end - -2025-09-26 01:19:18,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:19,758 INFO Connection check task start - -2025-09-26 01:19:19,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:19,758 INFO Out dated connection ,size=0 - -2025-09-26 01:19:19,758 INFO Connection check task end - -2025-09-26 01:19:21,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:22,759 INFO Connection check task start - -2025-09-26 01:19:22,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:22,759 INFO Out dated connection ,size=0 - -2025-09-26 01:19:22,759 INFO Connection check task end - -2025-09-26 01:19:24,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:25,759 INFO Connection check task start - -2025-09-26 01:19:25,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:25,759 INFO Out dated connection ,size=0 - -2025-09-26 01:19:25,759 INFO Connection check task end - -2025-09-26 01:19:27,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:28,759 INFO Connection check task start - -2025-09-26 01:19:28,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:28,760 INFO Out dated connection ,size=0 - -2025-09-26 01:19:28,760 INFO Connection check task end - -2025-09-26 01:19:30,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:31,760 INFO Connection check task start - -2025-09-26 01:19:31,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:31,761 INFO Out dated connection ,size=0 - -2025-09-26 01:19:31,761 INFO Connection check task end - -2025-09-26 01:19:33,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:34,762 INFO Connection check task start - -2025-09-26 01:19:34,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:34,762 INFO Out dated connection ,size=0 - -2025-09-26 01:19:34,762 INFO Connection check task end - -2025-09-26 01:19:36,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:37,762 INFO Connection check task start - -2025-09-26 01:19:37,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:37,762 INFO Out dated connection ,size=0 - -2025-09-26 01:19:37,762 INFO Connection check task end - -2025-09-26 01:19:39,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:40,762 INFO Connection check task start - -2025-09-26 01:19:40,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:40,762 INFO Out dated connection ,size=0 - -2025-09-26 01:19:40,762 INFO Connection check task end - -2025-09-26 01:19:42,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:43,763 INFO Connection check task start - -2025-09-26 01:19:43,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:43,763 INFO Out dated connection ,size=0 - -2025-09-26 01:19:43,763 INFO Connection check task end - -2025-09-26 01:19:45,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:46,763 INFO Connection check task start - -2025-09-26 01:19:46,763 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:46,763 INFO Out dated connection ,size=0 - -2025-09-26 01:19:46,764 INFO Connection check task end - -2025-09-26 01:19:48,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:49,767 INFO Connection check task start - -2025-09-26 01:19:49,767 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:49,767 INFO Out dated connection ,size=0 - -2025-09-26 01:19:49,767 INFO Connection check task end - -2025-09-26 01:19:51,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:52,767 INFO Connection check task start - -2025-09-26 01:19:52,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:52,768 INFO Out dated connection ,size=0 - -2025-09-26 01:19:52,768 INFO Connection check task end - -2025-09-26 01:19:54,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:55,768 INFO Connection check task start - -2025-09-26 01:19:55,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:55,768 INFO Out dated connection ,size=0 - -2025-09-26 01:19:55,769 INFO Connection check task end - -2025-09-26 01:19:57,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:19:58,769 INFO Connection check task start - -2025-09-26 01:19:58,770 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:19:58,770 INFO Out dated connection ,size=0 - -2025-09-26 01:19:58,770 INFO Connection check task end - -2025-09-26 01:20:00,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:01,771 INFO Connection check task start - -2025-09-26 01:20:01,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:01,771 INFO Out dated connection ,size=0 - -2025-09-26 01:20:01,771 INFO Connection check task end - -2025-09-26 01:20:03,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:04,772 INFO Connection check task start - -2025-09-26 01:20:04,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:04,773 INFO Out dated connection ,size=0 - -2025-09-26 01:20:04,773 INFO Connection check task end - -2025-09-26 01:20:06,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:07,773 INFO Connection check task start - -2025-09-26 01:20:07,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:07,773 INFO Out dated connection ,size=0 - -2025-09-26 01:20:07,773 INFO Connection check task end - -2025-09-26 01:20:09,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:10,774 INFO Connection check task start - -2025-09-26 01:20:10,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:10,774 INFO Out dated connection ,size=0 - -2025-09-26 01:20:10,774 INFO Connection check task end - -2025-09-26 01:20:12,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:13,775 INFO Connection check task start - -2025-09-26 01:20:13,775 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:13,775 INFO Out dated connection ,size=0 - -2025-09-26 01:20:13,775 INFO Connection check task end - -2025-09-26 01:20:15,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:16,776 INFO Connection check task start - -2025-09-26 01:20:16,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:16,776 INFO Out dated connection ,size=0 - -2025-09-26 01:20:16,776 INFO Connection check task end - -2025-09-26 01:20:18,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:19,777 INFO Connection check task start - -2025-09-26 01:20:19,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:19,777 INFO Out dated connection ,size=0 - -2025-09-26 01:20:19,777 INFO Connection check task end - -2025-09-26 01:20:21,046 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:22,778 INFO Connection check task start - -2025-09-26 01:20:22,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:22,778 INFO Out dated connection ,size=0 - -2025-09-26 01:20:22,778 INFO Connection check task end - -2025-09-26 01:20:24,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:25,778 INFO Connection check task start - -2025-09-26 01:20:25,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:25,779 INFO Out dated connection ,size=0 - -2025-09-26 01:20:25,779 INFO Connection check task end - -2025-09-26 01:20:27,047 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:28,779 INFO Connection check task start - -2025-09-26 01:20:28,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:28,779 INFO Out dated connection ,size=0 - -2025-09-26 01:20:28,779 INFO Connection check task end - -2025-09-26 01:20:30,048 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:31,779 INFO Connection check task start - -2025-09-26 01:20:31,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:31,780 INFO Out dated connection ,size=0 - -2025-09-26 01:20:31,780 INFO Connection check task end - -2025-09-26 01:20:33,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:34,780 INFO Connection check task start - -2025-09-26 01:20:34,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:34,781 INFO Out dated connection ,size=0 - -2025-09-26 01:20:34,781 INFO Connection check task end - -2025-09-26 01:20:36,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:37,781 INFO Connection check task start - -2025-09-26 01:20:37,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:37,781 INFO Out dated connection ,size=0 - -2025-09-26 01:20:37,781 INFO Connection check task end - -2025-09-26 01:20:39,049 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:40,782 INFO Connection check task start - -2025-09-26 01:20:40,782 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:40,782 INFO Out dated connection ,size=0 - -2025-09-26 01:20:40,782 INFO Connection check task end - -2025-09-26 01:20:42,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:43,783 INFO Connection check task start - -2025-09-26 01:20:43,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:43,783 INFO Out dated connection ,size=0 - -2025-09-26 01:20:43,783 INFO Connection check task end - -2025-09-26 01:20:45,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:46,783 INFO Connection check task start - -2025-09-26 01:20:46,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:46,784 INFO Out dated connection ,size=0 - -2025-09-26 01:20:46,784 INFO Connection check task end - -2025-09-26 01:20:48,053 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:49,784 INFO Connection check task start - -2025-09-26 01:20:49,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:49,784 INFO Out dated connection ,size=0 - -2025-09-26 01:20:49,784 INFO Connection check task end - -2025-09-26 01:20:51,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:52,785 INFO Connection check task start - -2025-09-26 01:20:52,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:52,785 INFO Out dated connection ,size=0 - -2025-09-26 01:20:52,785 INFO Connection check task end - -2025-09-26 01:20:54,056 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:55,785 INFO Connection check task start - -2025-09-26 01:20:55,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:55,786 INFO Out dated connection ,size=0 - -2025-09-26 01:20:55,786 INFO Connection check task end - -2025-09-26 01:20:57,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:20:58,786 INFO Connection check task start - -2025-09-26 01:20:58,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:20:58,786 INFO Out dated connection ,size=0 - -2025-09-26 01:20:58,786 INFO Connection check task end - -2025-09-26 01:21:00,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:01,787 INFO Connection check task start - -2025-09-26 01:21:01,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:01,787 INFO Out dated connection ,size=0 - -2025-09-26 01:21:01,787 INFO Connection check task end - -2025-09-26 01:21:03,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:04,787 INFO Connection check task start - -2025-09-26 01:21:04,787 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:04,787 INFO Out dated connection ,size=0 - -2025-09-26 01:21:04,787 INFO Connection check task end - -2025-09-26 01:21:06,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:07,787 INFO Connection check task start - -2025-09-26 01:21:07,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:07,788 INFO Out dated connection ,size=0 - -2025-09-26 01:21:07,788 INFO Connection check task end - -2025-09-26 01:21:09,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:10,788 INFO Connection check task start - -2025-09-26 01:21:10,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:10,788 INFO Out dated connection ,size=0 - -2025-09-26 01:21:10,788 INFO Connection check task end - -2025-09-26 01:21:12,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:13,788 INFO Connection check task start - -2025-09-26 01:21:13,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:13,789 INFO Out dated connection ,size=0 - -2025-09-26 01:21:13,789 INFO Connection check task end - -2025-09-26 01:21:15,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:16,790 INFO Connection check task start - -2025-09-26 01:21:16,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:16,790 INFO Out dated connection ,size=0 - -2025-09-26 01:21:16,790 INFO Connection check task end - -2025-09-26 01:21:18,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:19,791 INFO Connection check task start - -2025-09-26 01:21:19,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:19,791 INFO Out dated connection ,size=0 - -2025-09-26 01:21:19,791 INFO Connection check task end - -2025-09-26 01:21:21,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:22,791 INFO Connection check task start - -2025-09-26 01:21:22,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:22,791 INFO Out dated connection ,size=0 - -2025-09-26 01:21:22,791 INFO Connection check task end - -2025-09-26 01:21:24,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:25,792 INFO Connection check task start - -2025-09-26 01:21:25,792 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:25,792 INFO Out dated connection ,size=0 - -2025-09-26 01:21:25,792 INFO Connection check task end - -2025-09-26 01:21:27,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:28,793 INFO Connection check task start - -2025-09-26 01:21:28,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:28,794 INFO Out dated connection ,size=0 - -2025-09-26 01:21:28,794 INFO Connection check task end - -2025-09-26 01:21:30,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:31,794 INFO Connection check task start - -2025-09-26 01:21:31,794 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:31,794 INFO Out dated connection ,size=0 - -2025-09-26 01:21:31,794 INFO Connection check task end - -2025-09-26 01:21:33,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:34,795 INFO Connection check task start - -2025-09-26 01:21:34,795 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:34,795 INFO Out dated connection ,size=0 - -2025-09-26 01:21:34,795 INFO Connection check task end - -2025-09-26 01:21:36,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:37,795 INFO Connection check task start - -2025-09-26 01:21:37,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:37,796 INFO Out dated connection ,size=0 - -2025-09-26 01:21:37,796 INFO Connection check task end - -2025-09-26 01:21:39,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:40,796 INFO Connection check task start - -2025-09-26 01:21:40,796 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:40,796 INFO Out dated connection ,size=0 - -2025-09-26 01:21:40,796 INFO Connection check task end - -2025-09-26 01:21:42,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:43,797 INFO Connection check task start - -2025-09-26 01:21:43,797 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:43,797 INFO Out dated connection ,size=0 - -2025-09-26 01:21:43,797 INFO Connection check task end - -2025-09-26 01:21:45,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:46,798 INFO Connection check task start - -2025-09-26 01:21:46,798 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:46,798 INFO Out dated connection ,size=0 - -2025-09-26 01:21:46,798 INFO Connection check task end - -2025-09-26 01:21:48,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:49,799 INFO Connection check task start - -2025-09-26 01:21:49,799 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:49,799 INFO Out dated connection ,size=0 - -2025-09-26 01:21:49,799 INFO Connection check task end - -2025-09-26 01:21:51,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:52,800 INFO Connection check task start - -2025-09-26 01:21:52,800 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:52,800 INFO Out dated connection ,size=0 - -2025-09-26 01:21:52,800 INFO Connection check task end - -2025-09-26 01:21:54,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:55,801 INFO Connection check task start - -2025-09-26 01:21:55,801 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:55,801 INFO Out dated connection ,size=0 - -2025-09-26 01:21:55,801 INFO Connection check task end - -2025-09-26 01:21:57,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:21:58,802 INFO Connection check task start - -2025-09-26 01:21:58,802 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:21:58,802 INFO Out dated connection ,size=0 - -2025-09-26 01:21:58,802 INFO Connection check task end - -2025-09-26 01:22:00,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:01,802 INFO Connection check task start - -2025-09-26 01:22:01,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:01,803 INFO Out dated connection ,size=0 - -2025-09-26 01:22:01,803 INFO Connection check task end - -2025-09-26 01:22:03,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:04,803 INFO Connection check task start - -2025-09-26 01:22:04,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:04,803 INFO Out dated connection ,size=0 - -2025-09-26 01:22:04,803 INFO Connection check task end - -2025-09-26 01:22:06,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:07,803 INFO Connection check task start - -2025-09-26 01:22:07,803 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:07,804 INFO Out dated connection ,size=0 - -2025-09-26 01:22:07,804 INFO Connection check task end - -2025-09-26 01:22:09,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:10,804 INFO Connection check task start - -2025-09-26 01:22:10,804 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:10,804 INFO Out dated connection ,size=0 - -2025-09-26 01:22:10,804 INFO Connection check task end - -2025-09-26 01:22:12,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:13,805 INFO Connection check task start - -2025-09-26 01:22:13,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:13,805 INFO Out dated connection ,size=0 - -2025-09-26 01:22:13,805 INFO Connection check task end - -2025-09-26 01:22:15,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:16,805 INFO Connection check task start - -2025-09-26 01:22:16,805 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:16,805 INFO Out dated connection ,size=0 - -2025-09-26 01:22:16,805 INFO Connection check task end - -2025-09-26 01:22:18,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:19,806 INFO Connection check task start - -2025-09-26 01:22:19,806 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:19,806 INFO Out dated connection ,size=0 - -2025-09-26 01:22:19,807 INFO Connection check task end - -2025-09-26 01:22:21,083 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:22,807 INFO Connection check task start - -2025-09-26 01:22:22,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:22,807 INFO Out dated connection ,size=0 - -2025-09-26 01:22:22,807 INFO Connection check task end - -2025-09-26 01:22:24,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:25,807 INFO Connection check task start - -2025-09-26 01:22:25,807 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:25,807 INFO Out dated connection ,size=0 - -2025-09-26 01:22:25,807 INFO Connection check task end - -2025-09-26 01:22:27,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:28,808 INFO Connection check task start - -2025-09-26 01:22:28,808 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:28,808 INFO Out dated connection ,size=0 - -2025-09-26 01:22:28,808 INFO Connection check task end - -2025-09-26 01:22:30,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:31,809 INFO Connection check task start - -2025-09-26 01:22:31,809 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:31,809 INFO Out dated connection ,size=0 - -2025-09-26 01:22:31,809 INFO Connection check task end - -2025-09-26 01:22:33,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:34,810 INFO Connection check task start - -2025-09-26 01:22:34,810 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:34,810 INFO Out dated connection ,size=0 - -2025-09-26 01:22:34,810 INFO Connection check task end - -2025-09-26 01:22:36,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:37,811 INFO Connection check task start - -2025-09-26 01:22:37,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:37,811 INFO Out dated connection ,size=0 - -2025-09-26 01:22:37,811 INFO Connection check task end - -2025-09-26 01:22:39,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:40,812 INFO Connection check task start - -2025-09-26 01:22:40,812 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:40,812 INFO Out dated connection ,size=0 - -2025-09-26 01:22:40,812 INFO Connection check task end - -2025-09-26 01:22:42,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:43,813 INFO Connection check task start - -2025-09-26 01:22:43,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:43,813 INFO Out dated connection ,size=0 - -2025-09-26 01:22:43,813 INFO Connection check task end - -2025-09-26 01:22:45,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:46,813 INFO Connection check task start - -2025-09-26 01:22:46,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:46,813 INFO Out dated connection ,size=0 - -2025-09-26 01:22:46,813 INFO Connection check task end - -2025-09-26 01:22:48,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:49,814 INFO Connection check task start - -2025-09-26 01:22:49,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:49,814 INFO Out dated connection ,size=0 - -2025-09-26 01:22:49,814 INFO Connection check task end - -2025-09-26 01:22:51,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:52,814 INFO Connection check task start - -2025-09-26 01:22:52,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:52,814 INFO Out dated connection ,size=0 - -2025-09-26 01:22:52,814 INFO Connection check task end - -2025-09-26 01:22:54,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:55,815 INFO Connection check task start - -2025-09-26 01:22:55,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:55,815 INFO Out dated connection ,size=0 - -2025-09-26 01:22:55,815 INFO Connection check task end - -2025-09-26 01:22:57,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:22:58,816 INFO Connection check task start - -2025-09-26 01:22:58,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:22:58,816 INFO Out dated connection ,size=0 - -2025-09-26 01:22:58,816 INFO Connection check task end - -2025-09-26 01:23:00,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:01,817 INFO Connection check task start - -2025-09-26 01:23:01,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:01,817 INFO Out dated connection ,size=0 - -2025-09-26 01:23:01,817 INFO Connection check task end - -2025-09-26 01:23:03,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:04,817 INFO Connection check task start - -2025-09-26 01:23:04,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:04,818 INFO Out dated connection ,size=0 - -2025-09-26 01:23:04,818 INFO Connection check task end - -2025-09-26 01:23:06,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:07,818 INFO Connection check task start - -2025-09-26 01:23:07,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:07,818 INFO Out dated connection ,size=0 - -2025-09-26 01:23:07,818 INFO Connection check task end - -2025-09-26 01:23:09,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:10,819 INFO Connection check task start - -2025-09-26 01:23:10,819 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:10,819 INFO Out dated connection ,size=0 - -2025-09-26 01:23:10,819 INFO Connection check task end - -2025-09-26 01:23:12,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:13,820 INFO Connection check task start - -2025-09-26 01:23:13,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:13,820 INFO Out dated connection ,size=0 - -2025-09-26 01:23:13,820 INFO Connection check task end - -2025-09-26 01:23:15,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:16,820 INFO Connection check task start - -2025-09-26 01:23:16,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:16,820 INFO Out dated connection ,size=0 - -2025-09-26 01:23:16,821 INFO Connection check task end - -2025-09-26 01:23:18,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:19,821 INFO Connection check task start - -2025-09-26 01:23:19,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:19,821 INFO Out dated connection ,size=0 - -2025-09-26 01:23:19,821 INFO Connection check task end - -2025-09-26 01:23:21,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:22,821 INFO Connection check task start - -2025-09-26 01:23:22,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:22,821 INFO Out dated connection ,size=0 - -2025-09-26 01:23:22,821 INFO Connection check task end - -2025-09-26 01:23:24,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:25,821 INFO Connection check task start - -2025-09-26 01:23:25,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:25,822 INFO Out dated connection ,size=0 - -2025-09-26 01:23:25,822 INFO Connection check task end - -2025-09-26 01:23:27,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:28,822 INFO Connection check task start - -2025-09-26 01:23:28,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:28,822 INFO Out dated connection ,size=0 - -2025-09-26 01:23:28,822 INFO Connection check task end - -2025-09-26 01:23:30,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:31,824 INFO Connection check task start - -2025-09-26 01:23:31,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:31,824 INFO Out dated connection ,size=0 - -2025-09-26 01:23:31,824 INFO Connection check task end - -2025-09-26 01:23:33,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:34,825 INFO Connection check task start - -2025-09-26 01:23:34,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:34,825 INFO Out dated connection ,size=0 - -2025-09-26 01:23:34,825 INFO Connection check task end - -2025-09-26 01:23:36,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:37,826 INFO Connection check task start - -2025-09-26 01:23:37,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:37,826 INFO Out dated connection ,size=0 - -2025-09-26 01:23:37,826 INFO Connection check task end - -2025-09-26 01:23:39,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:40,827 INFO Connection check task start - -2025-09-26 01:23:40,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:40,828 INFO Out dated connection ,size=0 - -2025-09-26 01:23:40,828 INFO Connection check task end - -2025-09-26 01:23:42,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:43,828 INFO Connection check task start - -2025-09-26 01:23:43,828 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:43,828 INFO Out dated connection ,size=0 - -2025-09-26 01:23:43,828 INFO Connection check task end - -2025-09-26 01:23:45,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:46,829 INFO Connection check task start - -2025-09-26 01:23:46,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:46,829 INFO Out dated connection ,size=0 - -2025-09-26 01:23:46,829 INFO Connection check task end - -2025-09-26 01:23:48,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:49,830 INFO Connection check task start - -2025-09-26 01:23:49,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:49,830 INFO Out dated connection ,size=0 - -2025-09-26 01:23:49,830 INFO Connection check task end - -2025-09-26 01:23:51,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:52,830 INFO Connection check task start - -2025-09-26 01:23:52,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:52,831 INFO Out dated connection ,size=0 - -2025-09-26 01:23:52,831 INFO Connection check task end - -2025-09-26 01:23:54,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:55,831 INFO Connection check task start - -2025-09-26 01:23:55,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:55,831 INFO Out dated connection ,size=0 - -2025-09-26 01:23:55,831 INFO Connection check task end - -2025-09-26 01:23:57,112 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:23:58,831 INFO Connection check task start - -2025-09-26 01:23:58,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:23:58,832 INFO Out dated connection ,size=0 - -2025-09-26 01:23:58,832 INFO Connection check task end - -2025-09-26 01:24:00,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:01,832 INFO Connection check task start - -2025-09-26 01:24:01,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:01,832 INFO Out dated connection ,size=0 - -2025-09-26 01:24:01,832 INFO Connection check task end - -2025-09-26 01:24:03,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:04,832 INFO Connection check task start - -2025-09-26 01:24:04,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:04,832 INFO Out dated connection ,size=0 - -2025-09-26 01:24:04,833 INFO Connection check task end - -2025-09-26 01:24:06,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:07,833 INFO Connection check task start - -2025-09-26 01:24:07,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:07,833 INFO Out dated connection ,size=0 - -2025-09-26 01:24:07,833 INFO Connection check task end - -2025-09-26 01:24:09,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:10,834 INFO Connection check task start - -2025-09-26 01:24:10,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:10,834 INFO Out dated connection ,size=0 - -2025-09-26 01:24:10,834 INFO Connection check task end - -2025-09-26 01:24:12,117 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:13,836 INFO Connection check task start - -2025-09-26 01:24:13,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:13,836 INFO Out dated connection ,size=0 - -2025-09-26 01:24:13,836 INFO Connection check task end - -2025-09-26 01:24:15,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:16,836 INFO Connection check task start - -2025-09-26 01:24:16,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:16,836 INFO Out dated connection ,size=0 - -2025-09-26 01:24:16,836 INFO Connection check task end - -2025-09-26 01:24:18,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:19,837 INFO Connection check task start - -2025-09-26 01:24:19,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:19,837 INFO Out dated connection ,size=0 - -2025-09-26 01:24:19,837 INFO Connection check task end - -2025-09-26 01:24:21,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:22,837 INFO Connection check task start - -2025-09-26 01:24:22,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:22,838 INFO Out dated connection ,size=0 - -2025-09-26 01:24:22,838 INFO Connection check task end - -2025-09-26 01:24:24,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:25,839 INFO Connection check task start - -2025-09-26 01:24:25,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:25,839 INFO Out dated connection ,size=0 - -2025-09-26 01:24:25,839 INFO Connection check task end - -2025-09-26 01:24:27,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:28,839 INFO Connection check task start - -2025-09-26 01:24:28,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:28,840 INFO Out dated connection ,size=0 - -2025-09-26 01:24:28,840 INFO Connection check task end - -2025-09-26 01:24:30,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:31,840 INFO Connection check task start - -2025-09-26 01:24:31,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:31,840 INFO Out dated connection ,size=0 - -2025-09-26 01:24:31,840 INFO Connection check task end - -2025-09-26 01:24:33,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:34,841 INFO Connection check task start - -2025-09-26 01:24:34,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:34,842 INFO Out dated connection ,size=0 - -2025-09-26 01:24:34,843 INFO Connection check task end - -2025-09-26 01:24:36,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:37,843 INFO Connection check task start - -2025-09-26 01:24:37,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:37,843 INFO Out dated connection ,size=0 - -2025-09-26 01:24:37,843 INFO Connection check task end - -2025-09-26 01:24:39,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:40,844 INFO Connection check task start - -2025-09-26 01:24:40,844 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:40,844 INFO Out dated connection ,size=0 - -2025-09-26 01:24:40,844 INFO Connection check task end - -2025-09-26 01:24:42,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:43,845 INFO Connection check task start - -2025-09-26 01:24:43,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:43,845 INFO Out dated connection ,size=0 - -2025-09-26 01:24:43,845 INFO Connection check task end - -2025-09-26 01:24:45,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:46,845 INFO Connection check task start - -2025-09-26 01:24:46,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:46,846 INFO Out dated connection ,size=0 - -2025-09-26 01:24:46,846 INFO Connection check task end - -2025-09-26 01:24:48,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:49,846 INFO Connection check task start - -2025-09-26 01:24:49,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:49,846 INFO Out dated connection ,size=0 - -2025-09-26 01:24:49,846 INFO Connection check task end - -2025-09-26 01:24:51,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:52,847 INFO Connection check task start - -2025-09-26 01:24:52,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:52,847 INFO Out dated connection ,size=0 - -2025-09-26 01:24:52,847 INFO Connection check task end - -2025-09-26 01:24:54,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:55,847 INFO Connection check task start - -2025-09-26 01:24:55,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:55,848 INFO Out dated connection ,size=0 - -2025-09-26 01:24:55,848 INFO Connection check task end - -2025-09-26 01:24:57,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:24:58,849 INFO Connection check task start - -2025-09-26 01:24:58,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:24:58,849 INFO Out dated connection ,size=0 - -2025-09-26 01:24:58,849 INFO Connection check task end - -2025-09-26 01:25:00,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:01,849 INFO Connection check task start - -2025-09-26 01:25:01,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:01,849 INFO Out dated connection ,size=0 - -2025-09-26 01:25:01,849 INFO Connection check task end - -2025-09-26 01:25:03,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:04,850 INFO Connection check task start - -2025-09-26 01:25:04,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:04,850 INFO Out dated connection ,size=0 - -2025-09-26 01:25:04,850 INFO Connection check task end - -2025-09-26 01:25:06,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:07,851 INFO Connection check task start - -2025-09-26 01:25:07,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:07,851 INFO Out dated connection ,size=0 - -2025-09-26 01:25:07,851 INFO Connection check task end - -2025-09-26 01:25:09,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:10,851 INFO Connection check task start - -2025-09-26 01:25:10,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:10,851 INFO Out dated connection ,size=0 - -2025-09-26 01:25:10,851 INFO Connection check task end - -2025-09-26 01:25:12,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:13,851 INFO Connection check task start - -2025-09-26 01:25:13,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:13,851 INFO Out dated connection ,size=0 - -2025-09-26 01:25:13,851 INFO Connection check task end - -2025-09-26 01:25:15,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:16,852 INFO Connection check task start - -2025-09-26 01:25:16,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:16,852 INFO Out dated connection ,size=0 - -2025-09-26 01:25:16,852 INFO Connection check task end - -2025-09-26 01:25:18,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:19,852 INFO Connection check task start - -2025-09-26 01:25:19,853 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:19,853 INFO Out dated connection ,size=0 - -2025-09-26 01:25:19,853 INFO Connection check task end - -2025-09-26 01:25:21,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:22,854 INFO Connection check task start - -2025-09-26 01:25:22,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:22,854 INFO Out dated connection ,size=0 - -2025-09-26 01:25:22,854 INFO Connection check task end - -2025-09-26 01:25:24,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:25,854 INFO Connection check task start - -2025-09-26 01:25:25,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:25,855 INFO Out dated connection ,size=0 - -2025-09-26 01:25:25,855 INFO Connection check task end - -2025-09-26 01:25:27,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:28,855 INFO Connection check task start - -2025-09-26 01:25:28,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:28,855 INFO Out dated connection ,size=0 - -2025-09-26 01:25:28,855 INFO Connection check task end - -2025-09-26 01:25:30,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:31,856 INFO Connection check task start - -2025-09-26 01:25:31,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:31,856 INFO Out dated connection ,size=0 - -2025-09-26 01:25:31,856 INFO Connection check task end - -2025-09-26 01:25:33,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:34,856 INFO Connection check task start - -2025-09-26 01:25:34,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:34,857 INFO Out dated connection ,size=0 - -2025-09-26 01:25:34,857 INFO Connection check task end - -2025-09-26 01:25:36,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:37,857 INFO Connection check task start - -2025-09-26 01:25:37,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:37,858 INFO Out dated connection ,size=0 - -2025-09-26 01:25:37,858 INFO Connection check task end - -2025-09-26 01:25:39,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:40,859 INFO Connection check task start - -2025-09-26 01:25:40,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:40,859 INFO Out dated connection ,size=0 - -2025-09-26 01:25:40,859 INFO Connection check task end - -2025-09-26 01:25:42,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:43,859 INFO Connection check task start - -2025-09-26 01:25:43,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:43,859 INFO Out dated connection ,size=0 - -2025-09-26 01:25:43,859 INFO Connection check task end - -2025-09-26 01:25:45,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:46,860 INFO Connection check task start - -2025-09-26 01:25:46,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:46,860 INFO Out dated connection ,size=0 - -2025-09-26 01:25:46,860 INFO Connection check task end - -2025-09-26 01:25:48,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:49,860 INFO Connection check task start - -2025-09-26 01:25:49,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:49,861 INFO Out dated connection ,size=0 - -2025-09-26 01:25:49,861 INFO Connection check task end - -2025-09-26 01:25:51,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:52,861 INFO Connection check task start - -2025-09-26 01:25:52,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:52,861 INFO Out dated connection ,size=0 - -2025-09-26 01:25:52,861 INFO Connection check task end - -2025-09-26 01:25:54,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:55,862 INFO Connection check task start - -2025-09-26 01:25:55,862 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:55,862 INFO Out dated connection ,size=0 - -2025-09-26 01:25:55,862 INFO Connection check task end - -2025-09-26 01:25:57,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:25:58,863 INFO Connection check task start - -2025-09-26 01:25:58,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:25:58,863 INFO Out dated connection ,size=0 - -2025-09-26 01:25:58,863 INFO Connection check task end - -2025-09-26 01:26:00,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:01,863 INFO Connection check task start - -2025-09-26 01:26:01,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:01,863 INFO Out dated connection ,size=0 - -2025-09-26 01:26:01,863 INFO Connection check task end - -2025-09-26 01:26:03,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:04,864 INFO Connection check task start - -2025-09-26 01:26:04,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:04,864 INFO Out dated connection ,size=0 - -2025-09-26 01:26:04,864 INFO Connection check task end - -2025-09-26 01:26:06,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:07,864 INFO Connection check task start - -2025-09-26 01:26:07,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:07,864 INFO Out dated connection ,size=0 - -2025-09-26 01:26:07,864 INFO Connection check task end - -2025-09-26 01:26:09,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:10,864 INFO Connection check task start - -2025-09-26 01:26:10,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:10,865 INFO Out dated connection ,size=0 - -2025-09-26 01:26:10,865 INFO Connection check task end - -2025-09-26 01:26:12,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:13,865 INFO Connection check task start - -2025-09-26 01:26:13,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:13,865 INFO Out dated connection ,size=0 - -2025-09-26 01:26:13,865 INFO Connection check task end - -2025-09-26 01:26:15,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:16,866 INFO Connection check task start - -2025-09-26 01:26:16,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:16,866 INFO Out dated connection ,size=0 - -2025-09-26 01:26:16,866 INFO Connection check task end - -2025-09-26 01:26:18,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:19,867 INFO Connection check task start - -2025-09-26 01:26:19,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:19,867 INFO Out dated connection ,size=0 - -2025-09-26 01:26:19,867 INFO Connection check task end - -2025-09-26 01:26:21,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:22,867 INFO Connection check task start - -2025-09-26 01:26:22,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:22,877 INFO Out dated connection ,size=0 - -2025-09-26 01:26:22,877 INFO Connection check task end - -2025-09-26 01:26:24,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:25,877 INFO Connection check task start - -2025-09-26 01:26:25,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:25,878 INFO Out dated connection ,size=0 - -2025-09-26 01:26:25,878 INFO Connection check task end - -2025-09-26 01:26:27,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:28,880 INFO Connection check task start - -2025-09-26 01:26:28,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:28,880 INFO Out dated connection ,size=0 - -2025-09-26 01:26:28,880 INFO Connection check task end - -2025-09-26 01:26:30,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:31,881 INFO Connection check task start - -2025-09-26 01:26:31,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:31,881 INFO Out dated connection ,size=0 - -2025-09-26 01:26:31,882 INFO Connection check task end - -2025-09-26 01:26:33,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:34,882 INFO Connection check task start - -2025-09-26 01:26:34,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:34,883 INFO Out dated connection ,size=0 - -2025-09-26 01:26:34,883 INFO Connection check task end - -2025-09-26 01:26:36,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:37,883 INFO Connection check task start - -2025-09-26 01:26:37,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:37,883 INFO Out dated connection ,size=0 - -2025-09-26 01:26:37,883 INFO Connection check task end - -2025-09-26 01:26:39,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:40,884 INFO Connection check task start - -2025-09-26 01:26:40,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:40,884 INFO Out dated connection ,size=0 - -2025-09-26 01:26:40,884 INFO Connection check task end - -2025-09-26 01:26:42,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:43,885 INFO Connection check task start - -2025-09-26 01:26:43,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:43,885 INFO Out dated connection ,size=0 - -2025-09-26 01:26:43,885 INFO Connection check task end - -2025-09-26 01:26:45,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:46,886 INFO Connection check task start - -2025-09-26 01:26:46,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:46,886 INFO Out dated connection ,size=0 - -2025-09-26 01:26:46,886 INFO Connection check task end - -2025-09-26 01:26:48,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:49,887 INFO Connection check task start - -2025-09-26 01:26:49,887 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:49,887 INFO Out dated connection ,size=0 - -2025-09-26 01:26:49,887 INFO Connection check task end - -2025-09-26 01:26:51,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:52,888 INFO Connection check task start - -2025-09-26 01:26:52,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:52,888 INFO Out dated connection ,size=0 - -2025-09-26 01:26:52,888 INFO Connection check task end - -2025-09-26 01:26:54,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:55,889 INFO Connection check task start - -2025-09-26 01:26:55,889 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:55,889 INFO Out dated connection ,size=0 - -2025-09-26 01:26:55,889 INFO Connection check task end - -2025-09-26 01:26:57,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:26:58,890 INFO Connection check task start - -2025-09-26 01:26:58,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:26:58,890 INFO Out dated connection ,size=0 - -2025-09-26 01:26:58,890 INFO Connection check task end - -2025-09-26 01:27:00,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:01,891 INFO Connection check task start - -2025-09-26 01:27:01,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:01,891 INFO Out dated connection ,size=0 - -2025-09-26 01:27:01,891 INFO Connection check task end - -2025-09-26 01:27:03,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:04,891 INFO Connection check task start - -2025-09-26 01:27:04,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:04,891 INFO Out dated connection ,size=0 - -2025-09-26 01:27:04,891 INFO Connection check task end - -2025-09-26 01:27:06,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:07,891 INFO Connection check task start - -2025-09-26 01:27:07,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:07,891 INFO Out dated connection ,size=0 - -2025-09-26 01:27:07,891 INFO Connection check task end - -2025-09-26 01:27:09,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:10,893 INFO Connection check task start - -2025-09-26 01:27:10,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:10,893 INFO Out dated connection ,size=0 - -2025-09-26 01:27:10,893 INFO Connection check task end - -2025-09-26 01:27:12,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:13,893 INFO Connection check task start - -2025-09-26 01:27:13,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:13,893 INFO Out dated connection ,size=0 - -2025-09-26 01:27:13,893 INFO Connection check task end - -2025-09-26 01:27:15,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:16,893 INFO Connection check task start - -2025-09-26 01:27:16,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:16,893 INFO Out dated connection ,size=0 - -2025-09-26 01:27:16,894 INFO Connection check task end - -2025-09-26 01:27:18,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:19,894 INFO Connection check task start - -2025-09-26 01:27:19,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:19,894 INFO Out dated connection ,size=0 - -2025-09-26 01:27:19,894 INFO Connection check task end - -2025-09-26 01:27:21,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:22,895 INFO Connection check task start - -2025-09-26 01:27:22,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:22,895 INFO Out dated connection ,size=0 - -2025-09-26 01:27:22,895 INFO Connection check task end - -2025-09-26 01:27:24,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:25,895 INFO Connection check task start - -2025-09-26 01:27:25,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:25,895 INFO Out dated connection ,size=0 - -2025-09-26 01:27:25,895 INFO Connection check task end - -2025-09-26 01:27:27,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:28,896 INFO Connection check task start - -2025-09-26 01:27:28,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:28,896 INFO Out dated connection ,size=0 - -2025-09-26 01:27:28,896 INFO Connection check task end - -2025-09-26 01:27:30,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:31,896 INFO Connection check task start - -2025-09-26 01:27:31,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:31,896 INFO Out dated connection ,size=0 - -2025-09-26 01:27:31,897 INFO Connection check task end - -2025-09-26 01:27:33,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:34,897 INFO Connection check task start - -2025-09-26 01:27:34,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:34,897 INFO Out dated connection ,size=0 - -2025-09-26 01:27:34,897 INFO Connection check task end - -2025-09-26 01:27:36,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:37,897 INFO Connection check task start - -2025-09-26 01:27:37,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:37,897 INFO Out dated connection ,size=0 - -2025-09-26 01:27:37,897 INFO Connection check task end - -2025-09-26 01:27:39,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:40,898 INFO Connection check task start - -2025-09-26 01:27:40,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:40,898 INFO Out dated connection ,size=0 - -2025-09-26 01:27:40,898 INFO Connection check task end - -2025-09-26 01:27:42,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:43,899 INFO Connection check task start - -2025-09-26 01:27:43,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:43,900 INFO Out dated connection ,size=0 - -2025-09-26 01:27:43,900 INFO Connection check task end - -2025-09-26 01:27:45,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:46,901 INFO Connection check task start - -2025-09-26 01:27:46,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:46,901 INFO Out dated connection ,size=0 - -2025-09-26 01:27:46,901 INFO Connection check task end - -2025-09-26 01:27:48,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:49,902 INFO Connection check task start - -2025-09-26 01:27:49,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:49,902 INFO Out dated connection ,size=0 - -2025-09-26 01:27:49,902 INFO Connection check task end - -2025-09-26 01:27:51,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:52,902 INFO Connection check task start - -2025-09-26 01:27:52,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:52,902 INFO Out dated connection ,size=0 - -2025-09-26 01:27:52,902 INFO Connection check task end - -2025-09-26 01:27:54,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:55,903 INFO Connection check task start - -2025-09-26 01:27:55,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:55,903 INFO Out dated connection ,size=0 - -2025-09-26 01:27:55,903 INFO Connection check task end - -2025-09-26 01:27:57,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:27:58,903 INFO Connection check task start - -2025-09-26 01:27:58,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:27:58,907 INFO Out dated connection ,size=0 - -2025-09-26 01:27:58,907 INFO Connection check task end - -2025-09-26 01:28:00,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:01,907 INFO Connection check task start - -2025-09-26 01:28:01,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:01,908 INFO Out dated connection ,size=0 - -2025-09-26 01:28:01,908 INFO Connection check task end - -2025-09-26 01:28:03,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:04,908 INFO Connection check task start - -2025-09-26 01:28:04,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:04,908 INFO Out dated connection ,size=0 - -2025-09-26 01:28:04,908 INFO Connection check task end - -2025-09-26 01:28:06,184 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:07,908 INFO Connection check task start - -2025-09-26 01:28:07,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:07,909 INFO Out dated connection ,size=0 - -2025-09-26 01:28:07,909 INFO Connection check task end - -2025-09-26 01:28:09,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:10,910 INFO Connection check task start - -2025-09-26 01:28:10,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:10,911 INFO Out dated connection ,size=0 - -2025-09-26 01:28:10,911 INFO Connection check task end - -2025-09-26 01:28:12,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:13,920 INFO Connection check task start - -2025-09-26 01:28:13,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:13,920 INFO Out dated connection ,size=0 - -2025-09-26 01:28:13,920 INFO Connection check task end - -2025-09-26 01:28:15,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:16,921 INFO Connection check task start - -2025-09-26 01:28:16,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:16,921 INFO Out dated connection ,size=0 - -2025-09-26 01:28:16,921 INFO Connection check task end - -2025-09-26 01:28:18,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:19,921 INFO Connection check task start - -2025-09-26 01:28:19,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:19,922 INFO Out dated connection ,size=0 - -2025-09-26 01:28:19,922 INFO Connection check task end - -2025-09-26 01:28:21,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:22,923 INFO Connection check task start - -2025-09-26 01:28:22,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:22,923 INFO Out dated connection ,size=0 - -2025-09-26 01:28:22,923 INFO Connection check task end - -2025-09-26 01:28:24,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:25,923 INFO Connection check task start - -2025-09-26 01:28:25,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:25,924 INFO Out dated connection ,size=0 - -2025-09-26 01:28:25,924 INFO Connection check task end - -2025-09-26 01:28:27,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:28,924 INFO Connection check task start - -2025-09-26 01:28:28,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:28,924 INFO Out dated connection ,size=0 - -2025-09-26 01:28:28,924 INFO Connection check task end - -2025-09-26 01:28:30,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:31,924 INFO Connection check task start - -2025-09-26 01:28:31,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:31,925 INFO Out dated connection ,size=0 - -2025-09-26 01:28:31,925 INFO Connection check task end - -2025-09-26 01:28:33,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:34,925 INFO Connection check task start - -2025-09-26 01:28:34,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:34,927 INFO Out dated connection ,size=0 - -2025-09-26 01:28:34,928 INFO Connection check task end - -2025-09-26 01:28:36,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:37,928 INFO Connection check task start - -2025-09-26 01:28:37,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:37,928 INFO Out dated connection ,size=0 - -2025-09-26 01:28:37,928 INFO Connection check task end - -2025-09-26 01:28:39,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:40,928 INFO Connection check task start - -2025-09-26 01:28:40,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:40,929 INFO Out dated connection ,size=0 - -2025-09-26 01:28:40,929 INFO Connection check task end - -2025-09-26 01:28:42,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:43,929 INFO Connection check task start - -2025-09-26 01:28:43,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:43,929 INFO Out dated connection ,size=0 - -2025-09-26 01:28:43,929 INFO Connection check task end - -2025-09-26 01:28:45,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:46,930 INFO Connection check task start - -2025-09-26 01:28:46,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:46,930 INFO Out dated connection ,size=0 - -2025-09-26 01:28:46,931 INFO Connection check task end - -2025-09-26 01:28:48,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:49,931 INFO Connection check task start - -2025-09-26 01:28:49,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:49,931 INFO Out dated connection ,size=0 - -2025-09-26 01:28:49,931 INFO Connection check task end - -2025-09-26 01:28:51,209 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:52,931 INFO Connection check task start - -2025-09-26 01:28:52,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:52,932 INFO Out dated connection ,size=0 - -2025-09-26 01:28:52,932 INFO Connection check task end - -2025-09-26 01:28:54,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:55,932 INFO Connection check task start - -2025-09-26 01:28:55,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:55,932 INFO Out dated connection ,size=0 - -2025-09-26 01:28:55,932 INFO Connection check task end - -2025-09-26 01:28:57,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:28:58,933 INFO Connection check task start - -2025-09-26 01:28:58,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:28:58,933 INFO Out dated connection ,size=0 - -2025-09-26 01:28:58,933 INFO Connection check task end - -2025-09-26 01:29:00,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:01,933 INFO Connection check task start - -2025-09-26 01:29:01,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:01,933 INFO Out dated connection ,size=0 - -2025-09-26 01:29:01,933 INFO Connection check task end - -2025-09-26 01:29:03,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:04,934 INFO Connection check task start - -2025-09-26 01:29:04,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:04,934 INFO Out dated connection ,size=0 - -2025-09-26 01:29:04,934 INFO Connection check task end - -2025-09-26 01:29:06,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:07,935 INFO Connection check task start - -2025-09-26 01:29:07,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:07,935 INFO Out dated connection ,size=0 - -2025-09-26 01:29:07,935 INFO Connection check task end - -2025-09-26 01:29:09,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:10,935 INFO Connection check task start - -2025-09-26 01:29:10,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:10,935 INFO Out dated connection ,size=0 - -2025-09-26 01:29:10,935 INFO Connection check task end - -2025-09-26 01:29:12,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:13,935 INFO Connection check task start - -2025-09-26 01:29:13,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:13,936 INFO Out dated connection ,size=0 - -2025-09-26 01:29:13,936 INFO Connection check task end - -2025-09-26 01:29:15,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:16,936 INFO Connection check task start - -2025-09-26 01:29:16,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:16,936 INFO Out dated connection ,size=0 - -2025-09-26 01:29:16,936 INFO Connection check task end - -2025-09-26 01:29:18,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:19,937 INFO Connection check task start - -2025-09-26 01:29:19,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:19,938 INFO Out dated connection ,size=0 - -2025-09-26 01:29:19,938 INFO Connection check task end - -2025-09-26 01:29:21,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:22,938 INFO Connection check task start - -2025-09-26 01:29:22,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:22,938 INFO Out dated connection ,size=0 - -2025-09-26 01:29:22,938 INFO Connection check task end - -2025-09-26 01:29:24,217 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:25,939 INFO Connection check task start - -2025-09-26 01:29:25,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:25,939 INFO Out dated connection ,size=0 - -2025-09-26 01:29:25,940 INFO Connection check task end - -2025-09-26 01:29:27,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:28,940 INFO Connection check task start - -2025-09-26 01:29:28,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:28,941 INFO Out dated connection ,size=0 - -2025-09-26 01:29:28,941 INFO Connection check task end - -2025-09-26 01:29:30,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:31,942 INFO Connection check task start - -2025-09-26 01:29:31,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:31,942 INFO Out dated connection ,size=0 - -2025-09-26 01:29:31,942 INFO Connection check task end - -2025-09-26 01:29:33,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:34,943 INFO Connection check task start - -2025-09-26 01:29:34,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:34,943 INFO Out dated connection ,size=0 - -2025-09-26 01:29:34,943 INFO Connection check task end - -2025-09-26 01:29:36,221 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:37,943 INFO Connection check task start - -2025-09-26 01:29:37,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:37,943 INFO Out dated connection ,size=0 - -2025-09-26 01:29:37,943 INFO Connection check task end - -2025-09-26 01:29:39,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:40,944 INFO Connection check task start - -2025-09-26 01:29:40,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:40,944 INFO Out dated connection ,size=0 - -2025-09-26 01:29:40,944 INFO Connection check task end - -2025-09-26 01:29:42,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:43,944 INFO Connection check task start - -2025-09-26 01:29:43,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:43,944 INFO Out dated connection ,size=0 - -2025-09-26 01:29:43,944 INFO Connection check task end - -2025-09-26 01:29:45,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:46,945 INFO Connection check task start - -2025-09-26 01:29:46,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:46,945 INFO Out dated connection ,size=0 - -2025-09-26 01:29:46,945 INFO Connection check task end - -2025-09-26 01:29:48,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:49,945 INFO Connection check task start - -2025-09-26 01:29:49,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:49,946 INFO Out dated connection ,size=0 - -2025-09-26 01:29:49,946 INFO Connection check task end - -2025-09-26 01:29:51,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:52,946 INFO Connection check task start - -2025-09-26 01:29:52,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:52,947 INFO Out dated connection ,size=0 - -2025-09-26 01:29:52,947 INFO Connection check task end - -2025-09-26 01:29:54,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:55,947 INFO Connection check task start - -2025-09-26 01:29:55,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:55,947 INFO Out dated connection ,size=0 - -2025-09-26 01:29:55,947 INFO Connection check task end - -2025-09-26 01:29:57,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:29:58,948 INFO Connection check task start - -2025-09-26 01:29:58,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:29:58,948 INFO Out dated connection ,size=0 - -2025-09-26 01:29:58,948 INFO Connection check task end - -2025-09-26 01:30:00,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:01,949 INFO Connection check task start - -2025-09-26 01:30:01,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:01,949 INFO Out dated connection ,size=0 - -2025-09-26 01:30:01,949 INFO Connection check task end - -2025-09-26 01:30:03,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:04,950 INFO Connection check task start - -2025-09-26 01:30:04,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:04,950 INFO Out dated connection ,size=0 - -2025-09-26 01:30:04,951 INFO Connection check task end - -2025-09-26 01:30:06,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:07,951 INFO Connection check task start - -2025-09-26 01:30:07,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:07,951 INFO Out dated connection ,size=0 - -2025-09-26 01:30:07,951 INFO Connection check task end - -2025-09-26 01:30:09,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:10,952 INFO Connection check task start - -2025-09-26 01:30:10,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:10,952 INFO Out dated connection ,size=0 - -2025-09-26 01:30:10,952 INFO Connection check task end - -2025-09-26 01:30:12,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:13,953 INFO Connection check task start - -2025-09-26 01:30:13,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:13,954 INFO Out dated connection ,size=0 - -2025-09-26 01:30:13,954 INFO Connection check task end - -2025-09-26 01:30:15,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:16,955 INFO Connection check task start - -2025-09-26 01:30:16,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:16,955 INFO Out dated connection ,size=0 - -2025-09-26 01:30:16,955 INFO Connection check task end - -2025-09-26 01:30:18,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:19,956 INFO Connection check task start - -2025-09-26 01:30:19,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:19,957 INFO Out dated connection ,size=0 - -2025-09-26 01:30:19,957 INFO Connection check task end - -2025-09-26 01:30:21,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:22,957 INFO Connection check task start - -2025-09-26 01:30:22,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:22,958 INFO Out dated connection ,size=0 - -2025-09-26 01:30:22,958 INFO Connection check task end - -2025-09-26 01:30:24,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:25,959 INFO Connection check task start - -2025-09-26 01:30:25,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:25,959 INFO Out dated connection ,size=0 - -2025-09-26 01:30:25,959 INFO Connection check task end - -2025-09-26 01:30:27,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:28,960 INFO Connection check task start - -2025-09-26 01:30:28,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:28,960 INFO Out dated connection ,size=0 - -2025-09-26 01:30:28,960 INFO Connection check task end - -2025-09-26 01:30:30,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:31,961 INFO Connection check task start - -2025-09-26 01:30:31,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:31,961 INFO Out dated connection ,size=0 - -2025-09-26 01:30:31,961 INFO Connection check task end - -2025-09-26 01:30:33,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:34,962 INFO Connection check task start - -2025-09-26 01:30:34,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:34,962 INFO Out dated connection ,size=0 - -2025-09-26 01:30:34,962 INFO Connection check task end - -2025-09-26 01:30:36,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:37,963 INFO Connection check task start - -2025-09-26 01:30:37,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:37,963 INFO Out dated connection ,size=0 - -2025-09-26 01:30:37,963 INFO Connection check task end - -2025-09-26 01:30:39,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:40,964 INFO Connection check task start - -2025-09-26 01:30:40,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:40,964 INFO Out dated connection ,size=0 - -2025-09-26 01:30:40,965 INFO Connection check task end - -2025-09-26 01:30:42,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:43,965 INFO Connection check task start - -2025-09-26 01:30:43,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:43,965 INFO Out dated connection ,size=0 - -2025-09-26 01:30:43,966 INFO Connection check task end - -2025-09-26 01:30:45,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:46,966 INFO Connection check task start - -2025-09-26 01:30:46,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:46,966 INFO Out dated connection ,size=0 - -2025-09-26 01:30:46,966 INFO Connection check task end - -2025-09-26 01:30:48,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:49,968 INFO Connection check task start - -2025-09-26 01:30:49,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:49,968 INFO Out dated connection ,size=0 - -2025-09-26 01:30:49,968 INFO Connection check task end - -2025-09-26 01:30:51,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:52,969 INFO Connection check task start - -2025-09-26 01:30:52,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:52,969 INFO Out dated connection ,size=0 - -2025-09-26 01:30:52,969 INFO Connection check task end - -2025-09-26 01:30:54,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:55,970 INFO Connection check task start - -2025-09-26 01:30:55,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:55,970 INFO Out dated connection ,size=0 - -2025-09-26 01:30:55,971 INFO Connection check task end - -2025-09-26 01:30:57,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:30:58,971 INFO Connection check task start - -2025-09-26 01:30:58,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:30:58,971 INFO Out dated connection ,size=0 - -2025-09-26 01:30:58,971 INFO Connection check task end - -2025-09-26 01:31:00,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:01,972 INFO Connection check task start - -2025-09-26 01:31:01,972 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:01,972 INFO Out dated connection ,size=0 - -2025-09-26 01:31:01,972 INFO Connection check task end - -2025-09-26 01:31:03,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:04,972 INFO Connection check task start - -2025-09-26 01:31:04,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:04,973 INFO Out dated connection ,size=0 - -2025-09-26 01:31:04,973 INFO Connection check task end - -2025-09-26 01:31:06,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:07,973 INFO Connection check task start - -2025-09-26 01:31:07,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:07,973 INFO Out dated connection ,size=0 - -2025-09-26 01:31:07,974 INFO Connection check task end - -2025-09-26 01:31:09,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:10,974 INFO Connection check task start - -2025-09-26 01:31:10,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:10,975 INFO Out dated connection ,size=0 - -2025-09-26 01:31:10,975 INFO Connection check task end - -2025-09-26 01:31:12,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:13,975 INFO Connection check task start - -2025-09-26 01:31:13,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:13,975 INFO Out dated connection ,size=0 - -2025-09-26 01:31:13,975 INFO Connection check task end - -2025-09-26 01:31:15,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:16,976 INFO Connection check task start - -2025-09-26 01:31:16,976 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:16,976 INFO Out dated connection ,size=0 - -2025-09-26 01:31:16,976 INFO Connection check task end - -2025-09-26 01:31:18,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:19,977 INFO Connection check task start - -2025-09-26 01:31:19,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:19,977 INFO Out dated connection ,size=0 - -2025-09-26 01:31:19,977 INFO Connection check task end - -2025-09-26 01:31:21,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:22,977 INFO Connection check task start - -2025-09-26 01:31:22,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:22,977 INFO Out dated connection ,size=0 - -2025-09-26 01:31:22,978 INFO Connection check task end - -2025-09-26 01:31:24,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:25,978 INFO Connection check task start - -2025-09-26 01:31:25,979 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:25,979 INFO Out dated connection ,size=0 - -2025-09-26 01:31:25,979 INFO Connection check task end - -2025-09-26 01:31:27,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:28,980 INFO Connection check task start - -2025-09-26 01:31:28,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:28,980 INFO Out dated connection ,size=0 - -2025-09-26 01:31:28,980 INFO Connection check task end - -2025-09-26 01:31:30,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:31,981 INFO Connection check task start - -2025-09-26 01:31:31,981 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:31,981 INFO Out dated connection ,size=0 - -2025-09-26 01:31:31,981 INFO Connection check task end - -2025-09-26 01:31:33,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:34,982 INFO Connection check task start - -2025-09-26 01:31:34,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:34,982 INFO Out dated connection ,size=0 - -2025-09-26 01:31:34,982 INFO Connection check task end - -2025-09-26 01:31:36,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:37,983 INFO Connection check task start - -2025-09-26 01:31:37,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:37,983 INFO Out dated connection ,size=0 - -2025-09-26 01:31:37,983 INFO Connection check task end - -2025-09-26 01:31:39,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:40,984 INFO Connection check task start - -2025-09-26 01:31:40,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:40,984 INFO Out dated connection ,size=0 - -2025-09-26 01:31:40,984 INFO Connection check task end - -2025-09-26 01:31:42,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:43,984 INFO Connection check task start - -2025-09-26 01:31:43,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:43,984 INFO Out dated connection ,size=0 - -2025-09-26 01:31:43,984 INFO Connection check task end - -2025-09-26 01:31:45,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:46,986 INFO Connection check task start - -2025-09-26 01:31:46,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:46,986 INFO Out dated connection ,size=0 - -2025-09-26 01:31:46,986 INFO Connection check task end - -2025-09-26 01:31:48,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:49,986 INFO Connection check task start - -2025-09-26 01:31:49,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:49,986 INFO Out dated connection ,size=0 - -2025-09-26 01:31:49,986 INFO Connection check task end - -2025-09-26 01:31:51,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:52,987 INFO Connection check task start - -2025-09-26 01:31:52,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:52,987 INFO Out dated connection ,size=0 - -2025-09-26 01:31:52,987 INFO Connection check task end - -2025-09-26 01:31:54,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:55,988 INFO Connection check task start - -2025-09-26 01:31:55,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:55,988 INFO Out dated connection ,size=0 - -2025-09-26 01:31:55,988 INFO Connection check task end - -2025-09-26 01:31:57,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:31:58,988 INFO Connection check task start - -2025-09-26 01:31:58,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:31:58,989 INFO Out dated connection ,size=0 - -2025-09-26 01:31:58,989 INFO Connection check task end - -2025-09-26 01:32:00,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:01,989 INFO Connection check task start - -2025-09-26 01:32:01,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:01,989 INFO Out dated connection ,size=0 - -2025-09-26 01:32:01,989 INFO Connection check task end - -2025-09-26 01:32:03,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:04,990 INFO Connection check task start - -2025-09-26 01:32:04,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:04,990 INFO Out dated connection ,size=0 - -2025-09-26 01:32:04,990 INFO Connection check task end - -2025-09-26 01:32:06,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:07,990 INFO Connection check task start - -2025-09-26 01:32:07,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:07,992 INFO Out dated connection ,size=0 - -2025-09-26 01:32:07,992 INFO Connection check task end - -2025-09-26 01:32:09,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:10,992 INFO Connection check task start - -2025-09-26 01:32:10,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:10,992 INFO Out dated connection ,size=0 - -2025-09-26 01:32:10,992 INFO Connection check task end - -2025-09-26 01:32:12,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:13,993 INFO Connection check task start - -2025-09-26 01:32:13,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:13,994 INFO Out dated connection ,size=0 - -2025-09-26 01:32:13,994 INFO Connection check task end - -2025-09-26 01:32:15,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:16,994 INFO Connection check task start - -2025-09-26 01:32:16,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:16,994 INFO Out dated connection ,size=0 - -2025-09-26 01:32:16,995 INFO Connection check task end - -2025-09-26 01:32:18,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:19,995 INFO Connection check task start - -2025-09-26 01:32:19,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:19,995 INFO Out dated connection ,size=0 - -2025-09-26 01:32:19,995 INFO Connection check task end - -2025-09-26 01:32:21,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:22,996 INFO Connection check task start - -2025-09-26 01:32:22,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:22,996 INFO Out dated connection ,size=0 - -2025-09-26 01:32:22,996 INFO Connection check task end - -2025-09-26 01:32:24,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:25,996 INFO Connection check task start - -2025-09-26 01:32:25,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:25,997 INFO Out dated connection ,size=0 - -2025-09-26 01:32:25,997 INFO Connection check task end - -2025-09-26 01:32:27,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:28,997 INFO Connection check task start - -2025-09-26 01:32:28,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:28,997 INFO Out dated connection ,size=0 - -2025-09-26 01:32:28,997 INFO Connection check task end - -2025-09-26 01:32:30,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:31,997 INFO Connection check task start - -2025-09-26 01:32:31,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:31,997 INFO Out dated connection ,size=0 - -2025-09-26 01:32:31,997 INFO Connection check task end - -2025-09-26 01:32:33,264 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:34,998 INFO Connection check task start - -2025-09-26 01:32:34,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:34,999 INFO Out dated connection ,size=0 - -2025-09-26 01:32:34,999 INFO Connection check task end - -2025-09-26 01:32:36,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:37,999 INFO Connection check task start - -2025-09-26 01:32:37,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:37,999 INFO Out dated connection ,size=0 - -2025-09-26 01:32:38,000 INFO Connection check task end - -2025-09-26 01:32:39,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:41,001 INFO Connection check task start - -2025-09-26 01:32:41,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:41,001 INFO Out dated connection ,size=0 - -2025-09-26 01:32:41,001 INFO Connection check task end - -2025-09-26 01:32:42,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:44,002 INFO Connection check task start - -2025-09-26 01:32:44,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:44,002 INFO Out dated connection ,size=0 - -2025-09-26 01:32:44,002 INFO Connection check task end - -2025-09-26 01:32:45,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:47,003 INFO Connection check task start - -2025-09-26 01:32:47,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:47,003 INFO Out dated connection ,size=0 - -2025-09-26 01:32:47,003 INFO Connection check task end - -2025-09-26 01:32:48,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:50,004 INFO Connection check task start - -2025-09-26 01:32:50,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:50,004 INFO Out dated connection ,size=0 - -2025-09-26 01:32:50,004 INFO Connection check task end - -2025-09-26 01:32:51,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:53,005 INFO Connection check task start - -2025-09-26 01:32:53,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:53,005 INFO Out dated connection ,size=0 - -2025-09-26 01:32:53,005 INFO Connection check task end - -2025-09-26 01:32:54,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:56,005 INFO Connection check task start - -2025-09-26 01:32:56,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:56,005 INFO Out dated connection ,size=0 - -2025-09-26 01:32:56,005 INFO Connection check task end - -2025-09-26 01:32:57,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:32:59,006 INFO Connection check task start - -2025-09-26 01:32:59,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:32:59,006 INFO Out dated connection ,size=0 - -2025-09-26 01:32:59,006 INFO Connection check task end - -2025-09-26 01:33:00,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:02,006 INFO Connection check task start - -2025-09-26 01:33:02,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:02,007 INFO Out dated connection ,size=0 - -2025-09-26 01:33:02,007 INFO Connection check task end - -2025-09-26 01:33:03,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:05,008 INFO Connection check task start - -2025-09-26 01:33:05,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:05,008 INFO Out dated connection ,size=0 - -2025-09-26 01:33:05,008 INFO Connection check task end - -2025-09-26 01:33:06,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:08,008 INFO Connection check task start - -2025-09-26 01:33:08,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:08,009 INFO Out dated connection ,size=0 - -2025-09-26 01:33:08,009 INFO Connection check task end - -2025-09-26 01:33:09,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:11,009 INFO Connection check task start - -2025-09-26 01:33:11,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:11,010 INFO Out dated connection ,size=0 - -2025-09-26 01:33:11,010 INFO Connection check task end - -2025-09-26 01:33:12,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:14,011 INFO Connection check task start - -2025-09-26 01:33:14,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:14,012 INFO Out dated connection ,size=0 - -2025-09-26 01:33:14,012 INFO Connection check task end - -2025-09-26 01:33:15,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:17,013 INFO Connection check task start - -2025-09-26 01:33:17,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:17,014 INFO Out dated connection ,size=0 - -2025-09-26 01:33:17,014 INFO Connection check task end - -2025-09-26 01:33:18,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:20,014 INFO Connection check task start - -2025-09-26 01:33:20,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:20,015 INFO Out dated connection ,size=0 - -2025-09-26 01:33:20,015 INFO Connection check task end - -2025-09-26 01:33:21,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:23,015 INFO Connection check task start - -2025-09-26 01:33:23,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:23,015 INFO Out dated connection ,size=0 - -2025-09-26 01:33:23,015 INFO Connection check task end - -2025-09-26 01:33:24,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:26,016 INFO Connection check task start - -2025-09-26 01:33:26,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:26,016 INFO Out dated connection ,size=0 - -2025-09-26 01:33:26,016 INFO Connection check task end - -2025-09-26 01:33:27,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:29,017 INFO Connection check task start - -2025-09-26 01:33:29,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:29,017 INFO Out dated connection ,size=0 - -2025-09-26 01:33:29,017 INFO Connection check task end - -2025-09-26 01:33:30,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:32,018 INFO Connection check task start - -2025-09-26 01:33:32,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:32,018 INFO Out dated connection ,size=0 - -2025-09-26 01:33:32,018 INFO Connection check task end - -2025-09-26 01:33:33,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:35,018 INFO Connection check task start - -2025-09-26 01:33:35,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:35,019 INFO Out dated connection ,size=0 - -2025-09-26 01:33:35,019 INFO Connection check task end - -2025-09-26 01:33:36,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:38,019 INFO Connection check task start - -2025-09-26 01:33:38,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:38,019 INFO Out dated connection ,size=0 - -2025-09-26 01:33:38,019 INFO Connection check task end - -2025-09-26 01:33:39,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:41,020 INFO Connection check task start - -2025-09-26 01:33:41,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:41,020 INFO Out dated connection ,size=0 - -2025-09-26 01:33:41,020 INFO Connection check task end - -2025-09-26 01:33:42,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:44,021 INFO Connection check task start - -2025-09-26 01:33:44,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:44,021 INFO Out dated connection ,size=0 - -2025-09-26 01:33:44,021 INFO Connection check task end - -2025-09-26 01:33:45,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:47,021 INFO Connection check task start - -2025-09-26 01:33:47,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:47,021 INFO Out dated connection ,size=0 - -2025-09-26 01:33:47,022 INFO Connection check task end - -2025-09-26 01:33:48,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:50,022 INFO Connection check task start - -2025-09-26 01:33:50,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:50,022 INFO Out dated connection ,size=0 - -2025-09-26 01:33:50,022 INFO Connection check task end - -2025-09-26 01:33:51,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:53,023 INFO Connection check task start - -2025-09-26 01:33:53,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:53,023 INFO Out dated connection ,size=0 - -2025-09-26 01:33:53,023 INFO Connection check task end - -2025-09-26 01:33:54,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:56,023 INFO Connection check task start - -2025-09-26 01:33:56,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:56,023 INFO Out dated connection ,size=0 - -2025-09-26 01:33:56,023 INFO Connection check task end - -2025-09-26 01:33:57,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:33:59,023 INFO Connection check task start - -2025-09-26 01:33:59,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:33:59,024 INFO Out dated connection ,size=0 - -2025-09-26 01:33:59,024 INFO Connection check task end - -2025-09-26 01:34:00,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:02,024 INFO Connection check task start - -2025-09-26 01:34:02,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:02,024 INFO Out dated connection ,size=0 - -2025-09-26 01:34:02,024 INFO Connection check task end - -2025-09-26 01:34:03,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:05,025 INFO Connection check task start - -2025-09-26 01:34:05,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:05,025 INFO Out dated connection ,size=0 - -2025-09-26 01:34:05,025 INFO Connection check task end - -2025-09-26 01:34:06,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:08,026 INFO Connection check task start - -2025-09-26 01:34:08,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:08,026 INFO Out dated connection ,size=0 - -2025-09-26 01:34:08,026 INFO Connection check task end - -2025-09-26 01:34:09,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:11,027 INFO Connection check task start - -2025-09-26 01:34:11,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:11,027 INFO Out dated connection ,size=0 - -2025-09-26 01:34:11,027 INFO Connection check task end - -2025-09-26 01:34:12,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:14,027 INFO Connection check task start - -2025-09-26 01:34:14,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:14,027 INFO Out dated connection ,size=0 - -2025-09-26 01:34:14,027 INFO Connection check task end - -2025-09-26 01:34:15,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:17,028 INFO Connection check task start - -2025-09-26 01:34:17,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:17,028 INFO Out dated connection ,size=0 - -2025-09-26 01:34:17,028 INFO Connection check task end - -2025-09-26 01:34:18,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:20,028 INFO Connection check task start - -2025-09-26 01:34:20,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:20,028 INFO Out dated connection ,size=0 - -2025-09-26 01:34:20,028 INFO Connection check task end - -2025-09-26 01:34:21,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:23,029 INFO Connection check task start - -2025-09-26 01:34:23,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:23,029 INFO Out dated connection ,size=0 - -2025-09-26 01:34:23,029 INFO Connection check task end - -2025-09-26 01:34:24,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:26,029 INFO Connection check task start - -2025-09-26 01:34:26,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:26,029 INFO Out dated connection ,size=0 - -2025-09-26 01:34:26,029 INFO Connection check task end - -2025-09-26 01:34:27,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:29,030 INFO Connection check task start - -2025-09-26 01:34:29,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:29,030 INFO Out dated connection ,size=0 - -2025-09-26 01:34:29,030 INFO Connection check task end - -2025-09-26 01:34:30,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:32,031 INFO Connection check task start - -2025-09-26 01:34:32,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:32,031 INFO Out dated connection ,size=0 - -2025-09-26 01:34:32,031 INFO Connection check task end - -2025-09-26 01:34:33,290 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:35,031 INFO Connection check task start - -2025-09-26 01:34:35,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:35,031 INFO Out dated connection ,size=0 - -2025-09-26 01:34:35,031 INFO Connection check task end - -2025-09-26 01:34:36,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:38,032 INFO Connection check task start - -2025-09-26 01:34:38,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:38,032 INFO Out dated connection ,size=0 - -2025-09-26 01:34:38,032 INFO Connection check task end - -2025-09-26 01:34:39,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:41,034 INFO Connection check task start - -2025-09-26 01:34:41,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:41,034 INFO Out dated connection ,size=0 - -2025-09-26 01:34:41,034 INFO Connection check task end - -2025-09-26 01:34:42,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:44,034 INFO Connection check task start - -2025-09-26 01:34:44,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:44,034 INFO Out dated connection ,size=0 - -2025-09-26 01:34:44,034 INFO Connection check task end - -2025-09-26 01:34:45,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:47,035 INFO Connection check task start - -2025-09-26 01:34:47,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:47,035 INFO Out dated connection ,size=0 - -2025-09-26 01:34:47,035 INFO Connection check task end - -2025-09-26 01:34:48,292 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:50,036 INFO Connection check task start - -2025-09-26 01:34:50,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:50,036 INFO Out dated connection ,size=0 - -2025-09-26 01:34:50,036 INFO Connection check task end - -2025-09-26 01:34:51,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:53,036 INFO Connection check task start - -2025-09-26 01:34:53,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:53,037 INFO Out dated connection ,size=0 - -2025-09-26 01:34:53,037 INFO Connection check task end - -2025-09-26 01:34:54,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:56,038 INFO Connection check task start - -2025-09-26 01:34:56,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:56,038 INFO Out dated connection ,size=0 - -2025-09-26 01:34:56,038 INFO Connection check task end - -2025-09-26 01:34:57,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:34:59,039 INFO Connection check task start - -2025-09-26 01:34:59,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:34:59,040 INFO Out dated connection ,size=0 - -2025-09-26 01:34:59,040 INFO Connection check task end - -2025-09-26 01:35:00,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:02,040 INFO Connection check task start - -2025-09-26 01:35:02,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:02,040 INFO Out dated connection ,size=0 - -2025-09-26 01:35:02,040 INFO Connection check task end - -2025-09-26 01:35:03,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:05,041 INFO Connection check task start - -2025-09-26 01:35:05,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:05,041 INFO Out dated connection ,size=0 - -2025-09-26 01:35:05,041 INFO Connection check task end - -2025-09-26 01:35:06,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:08,042 INFO Connection check task start - -2025-09-26 01:35:08,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:08,043 INFO Out dated connection ,size=0 - -2025-09-26 01:35:08,043 INFO Connection check task end - -2025-09-26 01:35:09,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:11,043 INFO Connection check task start - -2025-09-26 01:35:11,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:11,043 INFO Out dated connection ,size=0 - -2025-09-26 01:35:11,043 INFO Connection check task end - -2025-09-26 01:35:12,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:14,043 INFO Connection check task start - -2025-09-26 01:35:14,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:14,043 INFO Out dated connection ,size=0 - -2025-09-26 01:35:14,043 INFO Connection check task end - -2025-09-26 01:35:15,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:17,044 INFO Connection check task start - -2025-09-26 01:35:17,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:17,044 INFO Out dated connection ,size=0 - -2025-09-26 01:35:17,044 INFO Connection check task end - -2025-09-26 01:35:18,298 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:20,045 INFO Connection check task start - -2025-09-26 01:35:20,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:20,045 INFO Out dated connection ,size=0 - -2025-09-26 01:35:20,045 INFO Connection check task end - -2025-09-26 01:35:21,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:23,045 INFO Connection check task start - -2025-09-26 01:35:23,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:23,046 INFO Out dated connection ,size=0 - -2025-09-26 01:35:23,046 INFO Connection check task end - -2025-09-26 01:35:24,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:26,046 INFO Connection check task start - -2025-09-26 01:35:26,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:26,047 INFO Out dated connection ,size=0 - -2025-09-26 01:35:26,047 INFO Connection check task end - -2025-09-26 01:35:27,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:29,048 INFO Connection check task start - -2025-09-26 01:35:29,048 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:29,048 INFO Out dated connection ,size=0 - -2025-09-26 01:35:29,048 INFO Connection check task end - -2025-09-26 01:35:30,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:32,049 INFO Connection check task start - -2025-09-26 01:35:32,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:32,049 INFO Out dated connection ,size=0 - -2025-09-26 01:35:32,049 INFO Connection check task end - -2025-09-26 01:35:33,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:35,050 INFO Connection check task start - -2025-09-26 01:35:35,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:35,050 INFO Out dated connection ,size=0 - -2025-09-26 01:35:35,050 INFO Connection check task end - -2025-09-26 01:35:36,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:38,050 INFO Connection check task start - -2025-09-26 01:35:38,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:38,050 INFO Out dated connection ,size=0 - -2025-09-26 01:35:38,050 INFO Connection check task end - -2025-09-26 01:35:39,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:41,051 INFO Connection check task start - -2025-09-26 01:35:41,051 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:41,051 INFO Out dated connection ,size=0 - -2025-09-26 01:35:41,051 INFO Connection check task end - -2025-09-26 01:35:42,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:44,052 INFO Connection check task start - -2025-09-26 01:35:44,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:44,052 INFO Out dated connection ,size=0 - -2025-09-26 01:35:44,052 INFO Connection check task end - -2025-09-26 01:35:45,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:47,053 INFO Connection check task start - -2025-09-26 01:35:47,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:47,053 INFO Out dated connection ,size=0 - -2025-09-26 01:35:47,053 INFO Connection check task end - -2025-09-26 01:35:48,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:50,054 INFO Connection check task start - -2025-09-26 01:35:50,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:50,054 INFO Out dated connection ,size=0 - -2025-09-26 01:35:50,054 INFO Connection check task end - -2025-09-26 01:35:51,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:53,055 INFO Connection check task start - -2025-09-26 01:35:53,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:53,055 INFO Out dated connection ,size=0 - -2025-09-26 01:35:53,055 INFO Connection check task end - -2025-09-26 01:35:54,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:56,056 INFO Connection check task start - -2025-09-26 01:35:56,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:56,056 INFO Out dated connection ,size=0 - -2025-09-26 01:35:56,056 INFO Connection check task end - -2025-09-26 01:35:57,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:35:59,057 INFO Connection check task start - -2025-09-26 01:35:59,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:35:59,057 INFO Out dated connection ,size=0 - -2025-09-26 01:35:59,057 INFO Connection check task end - -2025-09-26 01:36:00,306 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:02,057 INFO Connection check task start - -2025-09-26 01:36:02,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:02,058 INFO Out dated connection ,size=0 - -2025-09-26 01:36:02,058 INFO Connection check task end - -2025-09-26 01:36:03,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:05,058 INFO Connection check task start - -2025-09-26 01:36:05,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:05,058 INFO Out dated connection ,size=0 - -2025-09-26 01:36:05,058 INFO Connection check task end - -2025-09-26 01:36:06,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:08,059 INFO Connection check task start - -2025-09-26 01:36:08,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:08,059 INFO Out dated connection ,size=0 - -2025-09-26 01:36:08,059 INFO Connection check task end - -2025-09-26 01:36:09,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:11,061 INFO Connection check task start - -2025-09-26 01:36:11,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:11,061 INFO Out dated connection ,size=0 - -2025-09-26 01:36:11,061 INFO Connection check task end - -2025-09-26 01:36:12,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:14,062 INFO Connection check task start - -2025-09-26 01:36:14,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:14,062 INFO Out dated connection ,size=0 - -2025-09-26 01:36:14,062 INFO Connection check task end - -2025-09-26 01:36:15,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:17,062 INFO Connection check task start - -2025-09-26 01:36:17,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:17,063 INFO Out dated connection ,size=0 - -2025-09-26 01:36:17,063 INFO Connection check task end - -2025-09-26 01:36:18,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:20,063 INFO Connection check task start - -2025-09-26 01:36:20,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:20,064 INFO Out dated connection ,size=0 - -2025-09-26 01:36:20,064 INFO Connection check task end - -2025-09-26 01:36:21,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:23,065 INFO Connection check task start - -2025-09-26 01:36:23,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:23,066 INFO Out dated connection ,size=0 - -2025-09-26 01:36:23,066 INFO Connection check task end - -2025-09-26 01:36:24,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:26,066 INFO Connection check task start - -2025-09-26 01:36:26,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:26,066 INFO Out dated connection ,size=0 - -2025-09-26 01:36:26,066 INFO Connection check task end - -2025-09-26 01:36:27,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:29,067 INFO Connection check task start - -2025-09-26 01:36:29,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:29,067 INFO Out dated connection ,size=0 - -2025-09-26 01:36:29,067 INFO Connection check task end - -2025-09-26 01:36:30,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:32,067 INFO Connection check task start - -2025-09-26 01:36:32,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:32,068 INFO Out dated connection ,size=0 - -2025-09-26 01:36:32,068 INFO Connection check task end - -2025-09-26 01:36:33,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:35,068 INFO Connection check task start - -2025-09-26 01:36:35,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:35,068 INFO Out dated connection ,size=0 - -2025-09-26 01:36:35,068 INFO Connection check task end - -2025-09-26 01:36:36,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:38,068 INFO Connection check task start - -2025-09-26 01:36:38,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:38,069 INFO Out dated connection ,size=0 - -2025-09-26 01:36:38,069 INFO Connection check task end - -2025-09-26 01:36:39,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:41,069 INFO Connection check task start - -2025-09-26 01:36:41,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:41,069 INFO Out dated connection ,size=0 - -2025-09-26 01:36:41,069 INFO Connection check task end - -2025-09-26 01:36:42,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:44,069 INFO Connection check task start - -2025-09-26 01:36:44,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:44,070 INFO Out dated connection ,size=0 - -2025-09-26 01:36:44,070 INFO Connection check task end - -2025-09-26 01:36:45,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:47,072 INFO Connection check task start - -2025-09-26 01:36:47,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:47,072 INFO Out dated connection ,size=0 - -2025-09-26 01:36:47,072 INFO Connection check task end - -2025-09-26 01:36:48,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:50,073 INFO Connection check task start - -2025-09-26 01:36:50,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:50,073 INFO Out dated connection ,size=0 - -2025-09-26 01:36:50,073 INFO Connection check task end - -2025-09-26 01:36:51,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:53,073 INFO Connection check task start - -2025-09-26 01:36:53,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:53,073 INFO Out dated connection ,size=0 - -2025-09-26 01:36:53,074 INFO Connection check task end - -2025-09-26 01:36:54,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:56,074 INFO Connection check task start - -2025-09-26 01:36:56,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:56,074 INFO Out dated connection ,size=0 - -2025-09-26 01:36:56,074 INFO Connection check task end - -2025-09-26 01:36:57,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:36:59,075 INFO Connection check task start - -2025-09-26 01:36:59,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:36:59,075 INFO Out dated connection ,size=0 - -2025-09-26 01:36:59,075 INFO Connection check task end - -2025-09-26 01:37:00,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:02,076 INFO Connection check task start - -2025-09-26 01:37:02,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:02,076 INFO Out dated connection ,size=0 - -2025-09-26 01:37:02,076 INFO Connection check task end - -2025-09-26 01:37:03,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:05,077 INFO Connection check task start - -2025-09-26 01:37:05,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:05,077 INFO Out dated connection ,size=0 - -2025-09-26 01:37:05,077 INFO Connection check task end - -2025-09-26 01:37:06,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:08,078 INFO Connection check task start - -2025-09-26 01:37:08,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:08,079 INFO Out dated connection ,size=0 - -2025-09-26 01:37:08,079 INFO Connection check task end - -2025-09-26 01:37:09,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:11,079 INFO Connection check task start - -2025-09-26 01:37:11,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:11,080 INFO Out dated connection ,size=0 - -2025-09-26 01:37:11,080 INFO Connection check task end - -2025-09-26 01:37:12,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:14,080 INFO Connection check task start - -2025-09-26 01:37:14,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:14,080 INFO Out dated connection ,size=0 - -2025-09-26 01:37:14,080 INFO Connection check task end - -2025-09-26 01:37:15,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:17,081 INFO Connection check task start - -2025-09-26 01:37:17,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:17,082 INFO Out dated connection ,size=0 - -2025-09-26 01:37:17,082 INFO Connection check task end - -2025-09-26 01:37:18,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:20,082 INFO Connection check task start - -2025-09-26 01:37:20,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:20,082 INFO Out dated connection ,size=0 - -2025-09-26 01:37:20,082 INFO Connection check task end - -2025-09-26 01:37:21,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:23,083 INFO Connection check task start - -2025-09-26 01:37:23,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:23,083 INFO Out dated connection ,size=0 - -2025-09-26 01:37:23,083 INFO Connection check task end - -2025-09-26 01:37:24,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:26,083 INFO Connection check task start - -2025-09-26 01:37:26,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:26,084 INFO Out dated connection ,size=0 - -2025-09-26 01:37:26,084 INFO Connection check task end - -2025-09-26 01:37:27,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:29,084 INFO Connection check task start - -2025-09-26 01:37:29,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:29,084 INFO Out dated connection ,size=0 - -2025-09-26 01:37:29,084 INFO Connection check task end - -2025-09-26 01:37:30,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:32,084 INFO Connection check task start - -2025-09-26 01:37:32,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:32,085 INFO Out dated connection ,size=0 - -2025-09-26 01:37:32,085 INFO Connection check task end - -2025-09-26 01:37:33,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:35,086 INFO Connection check task start - -2025-09-26 01:37:35,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:35,086 INFO Out dated connection ,size=0 - -2025-09-26 01:37:35,086 INFO Connection check task end - -2025-09-26 01:37:36,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:38,086 INFO Connection check task start - -2025-09-26 01:37:38,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:38,086 INFO Out dated connection ,size=0 - -2025-09-26 01:37:38,086 INFO Connection check task end - -2025-09-26 01:37:39,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:41,087 INFO Connection check task start - -2025-09-26 01:37:41,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:41,087 INFO Out dated connection ,size=0 - -2025-09-26 01:37:41,087 INFO Connection check task end - -2025-09-26 01:37:42,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:44,088 INFO Connection check task start - -2025-09-26 01:37:44,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:44,089 INFO Out dated connection ,size=0 - -2025-09-26 01:37:44,089 INFO Connection check task end - -2025-09-26 01:37:45,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:47,090 INFO Connection check task start - -2025-09-26 01:37:47,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:47,090 INFO Out dated connection ,size=0 - -2025-09-26 01:37:47,090 INFO Connection check task end - -2025-09-26 01:37:48,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:50,091 INFO Connection check task start - -2025-09-26 01:37:50,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:50,091 INFO Out dated connection ,size=0 - -2025-09-26 01:37:50,091 INFO Connection check task end - -2025-09-26 01:37:51,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:53,091 INFO Connection check task start - -2025-09-26 01:37:53,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:53,092 INFO Out dated connection ,size=0 - -2025-09-26 01:37:53,092 INFO Connection check task end - -2025-09-26 01:37:54,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:56,092 INFO Connection check task start - -2025-09-26 01:37:56,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:56,093 INFO Out dated connection ,size=0 - -2025-09-26 01:37:56,093 INFO Connection check task end - -2025-09-26 01:37:57,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:37:59,093 INFO Connection check task start - -2025-09-26 01:37:59,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:37:59,093 INFO Out dated connection ,size=0 - -2025-09-26 01:37:59,093 INFO Connection check task end - -2025-09-26 01:38:00,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:02,093 INFO Connection check task start - -2025-09-26 01:38:02,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:02,094 INFO Out dated connection ,size=0 - -2025-09-26 01:38:02,094 INFO Connection check task end - -2025-09-26 01:38:03,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:05,095 INFO Connection check task start - -2025-09-26 01:38:05,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:05,095 INFO Out dated connection ,size=0 - -2025-09-26 01:38:05,095 INFO Connection check task end - -2025-09-26 01:38:06,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:08,096 INFO Connection check task start - -2025-09-26 01:38:08,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:08,096 INFO Out dated connection ,size=0 - -2025-09-26 01:38:08,096 INFO Connection check task end - -2025-09-26 01:38:09,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:11,097 INFO Connection check task start - -2025-09-26 01:38:11,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:11,097 INFO Out dated connection ,size=0 - -2025-09-26 01:38:11,097 INFO Connection check task end - -2025-09-26 01:38:12,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:14,098 INFO Connection check task start - -2025-09-26 01:38:14,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:14,098 INFO Out dated connection ,size=0 - -2025-09-26 01:38:14,098 INFO Connection check task end - -2025-09-26 01:38:15,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:17,098 INFO Connection check task start - -2025-09-26 01:38:17,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:17,099 INFO Out dated connection ,size=0 - -2025-09-26 01:38:17,099 INFO Connection check task end - -2025-09-26 01:38:18,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:20,100 INFO Connection check task start - -2025-09-26 01:38:20,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:20,100 INFO Out dated connection ,size=0 - -2025-09-26 01:38:20,100 INFO Connection check task end - -2025-09-26 01:38:21,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:23,101 INFO Connection check task start - -2025-09-26 01:38:23,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:23,102 INFO Out dated connection ,size=0 - -2025-09-26 01:38:23,102 INFO Connection check task end - -2025-09-26 01:38:24,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:26,102 INFO Connection check task start - -2025-09-26 01:38:26,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:26,102 INFO Out dated connection ,size=0 - -2025-09-26 01:38:26,102 INFO Connection check task end - -2025-09-26 01:38:27,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:29,103 INFO Connection check task start - -2025-09-26 01:38:29,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:29,103 INFO Out dated connection ,size=0 - -2025-09-26 01:38:29,103 INFO Connection check task end - -2025-09-26 01:38:30,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:32,104 INFO Connection check task start - -2025-09-26 01:38:32,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:32,104 INFO Out dated connection ,size=0 - -2025-09-26 01:38:32,104 INFO Connection check task end - -2025-09-26 01:38:33,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:35,104 INFO Connection check task start - -2025-09-26 01:38:35,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:35,104 INFO Out dated connection ,size=0 - -2025-09-26 01:38:35,104 INFO Connection check task end - -2025-09-26 01:38:36,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:38,105 INFO Connection check task start - -2025-09-26 01:38:38,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:38,106 INFO Out dated connection ,size=0 - -2025-09-26 01:38:38,106 INFO Connection check task end - -2025-09-26 01:38:39,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:41,106 INFO Connection check task start - -2025-09-26 01:38:41,106 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:41,106 INFO Out dated connection ,size=0 - -2025-09-26 01:38:41,106 INFO Connection check task end - -2025-09-26 01:38:42,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:44,107 INFO Connection check task start - -2025-09-26 01:38:44,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:44,107 INFO Out dated connection ,size=0 - -2025-09-26 01:38:44,107 INFO Connection check task end - -2025-09-26 01:38:45,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:47,108 INFO Connection check task start - -2025-09-26 01:38:47,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:47,109 INFO Out dated connection ,size=0 - -2025-09-26 01:38:47,109 INFO Connection check task end - -2025-09-26 01:38:48,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:50,110 INFO Connection check task start - -2025-09-26 01:38:50,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:50,110 INFO Out dated connection ,size=0 - -2025-09-26 01:38:50,110 INFO Connection check task end - -2025-09-26 01:38:51,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:53,111 INFO Connection check task start - -2025-09-26 01:38:53,111 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:53,111 INFO Out dated connection ,size=0 - -2025-09-26 01:38:53,111 INFO Connection check task end - -2025-09-26 01:38:54,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:56,112 INFO Connection check task start - -2025-09-26 01:38:56,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:56,112 INFO Out dated connection ,size=0 - -2025-09-26 01:38:56,112 INFO Connection check task end - -2025-09-26 01:38:57,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:38:59,113 INFO Connection check task start - -2025-09-26 01:38:59,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:38:59,113 INFO Out dated connection ,size=0 - -2025-09-26 01:38:59,113 INFO Connection check task end - -2025-09-26 01:39:00,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:02,114 INFO Connection check task start - -2025-09-26 01:39:02,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:02,115 INFO Out dated connection ,size=0 - -2025-09-26 01:39:02,115 INFO Connection check task end - -2025-09-26 01:39:03,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:05,115 INFO Connection check task start - -2025-09-26 01:39:05,116 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:05,116 INFO Out dated connection ,size=0 - -2025-09-26 01:39:05,116 INFO Connection check task end - -2025-09-26 01:39:06,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:08,116 INFO Connection check task start - -2025-09-26 01:39:08,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:08,117 INFO Out dated connection ,size=0 - -2025-09-26 01:39:08,117 INFO Connection check task end - -2025-09-26 01:39:09,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:11,117 INFO Connection check task start - -2025-09-26 01:39:11,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:11,117 INFO Out dated connection ,size=0 - -2025-09-26 01:39:11,117 INFO Connection check task end - -2025-09-26 01:39:12,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:14,117 INFO Connection check task start - -2025-09-26 01:39:14,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:14,117 INFO Out dated connection ,size=0 - -2025-09-26 01:39:14,117 INFO Connection check task end - -2025-09-26 01:39:15,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:17,122 INFO Connection check task start - -2025-09-26 01:39:17,124 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:17,125 INFO Out dated connection ,size=0 - -2025-09-26 01:39:17,126 INFO Connection check task end - -2025-09-26 01:39:18,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:20,127 INFO Connection check task start - -2025-09-26 01:39:20,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:20,127 INFO Out dated connection ,size=0 - -2025-09-26 01:39:20,127 INFO Connection check task end - -2025-09-26 01:39:21,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:23,127 INFO Connection check task start - -2025-09-26 01:39:23,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:23,127 INFO Out dated connection ,size=0 - -2025-09-26 01:39:23,128 INFO Connection check task end - -2025-09-26 01:39:24,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:26,128 INFO Connection check task start - -2025-09-26 01:39:26,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:26,129 INFO Out dated connection ,size=0 - -2025-09-26 01:39:26,129 INFO Connection check task end - -2025-09-26 01:39:27,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:29,130 INFO Connection check task start - -2025-09-26 01:39:29,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:29,130 INFO Out dated connection ,size=0 - -2025-09-26 01:39:29,130 INFO Connection check task end - -2025-09-26 01:39:30,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:32,130 INFO Connection check task start - -2025-09-26 01:39:32,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:32,131 INFO Out dated connection ,size=0 - -2025-09-26 01:39:32,131 INFO Connection check task end - -2025-09-26 01:39:33,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:35,131 INFO Connection check task start - -2025-09-26 01:39:35,131 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:35,131 INFO Out dated connection ,size=0 - -2025-09-26 01:39:35,131 INFO Connection check task end - -2025-09-26 01:39:36,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:38,132 INFO Connection check task start - -2025-09-26 01:39:38,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:38,132 INFO Out dated connection ,size=0 - -2025-09-26 01:39:38,132 INFO Connection check task end - -2025-09-26 01:39:39,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:41,132 INFO Connection check task start - -2025-09-26 01:39:41,132 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:41,132 INFO Out dated connection ,size=0 - -2025-09-26 01:39:41,132 INFO Connection check task end - -2025-09-26 01:39:42,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:44,133 INFO Connection check task start - -2025-09-26 01:39:44,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:44,134 INFO Out dated connection ,size=0 - -2025-09-26 01:39:44,134 INFO Connection check task end - -2025-09-26 01:39:45,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:47,134 INFO Connection check task start - -2025-09-26 01:39:47,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:47,134 INFO Out dated connection ,size=0 - -2025-09-26 01:39:47,134 INFO Connection check task end - -2025-09-26 01:39:48,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:50,135 INFO Connection check task start - -2025-09-26 01:39:50,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:50,135 INFO Out dated connection ,size=0 - -2025-09-26 01:39:50,135 INFO Connection check task end - -2025-09-26 01:39:51,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:53,136 INFO Connection check task start - -2025-09-26 01:39:53,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:53,136 INFO Out dated connection ,size=0 - -2025-09-26 01:39:53,136 INFO Connection check task end - -2025-09-26 01:39:54,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:56,136 INFO Connection check task start - -2025-09-26 01:39:56,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:56,136 INFO Out dated connection ,size=0 - -2025-09-26 01:39:56,136 INFO Connection check task end - -2025-09-26 01:39:57,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:39:59,137 INFO Connection check task start - -2025-09-26 01:39:59,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:39:59,137 INFO Out dated connection ,size=0 - -2025-09-26 01:39:59,137 INFO Connection check task end - -2025-09-26 01:40:00,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:02,138 INFO Connection check task start - -2025-09-26 01:40:02,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:02,138 INFO Out dated connection ,size=0 - -2025-09-26 01:40:02,138 INFO Connection check task end - -2025-09-26 01:40:03,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:05,139 INFO Connection check task start - -2025-09-26 01:40:05,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:05,139 INFO Out dated connection ,size=0 - -2025-09-26 01:40:05,139 INFO Connection check task end - -2025-09-26 01:40:06,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:08,140 INFO Connection check task start - -2025-09-26 01:40:08,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:08,140 INFO Out dated connection ,size=0 - -2025-09-26 01:40:08,140 INFO Connection check task end - -2025-09-26 01:40:09,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:11,140 INFO Connection check task start - -2025-09-26 01:40:11,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:11,140 INFO Out dated connection ,size=0 - -2025-09-26 01:40:11,140 INFO Connection check task end - -2025-09-26 01:40:12,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:14,141 INFO Connection check task start - -2025-09-26 01:40:14,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:14,141 INFO Out dated connection ,size=0 - -2025-09-26 01:40:14,141 INFO Connection check task end - -2025-09-26 01:40:15,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:17,142 INFO Connection check task start - -2025-09-26 01:40:17,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:17,142 INFO Out dated connection ,size=0 - -2025-09-26 01:40:17,142 INFO Connection check task end - -2025-09-26 01:40:18,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:20,143 INFO Connection check task start - -2025-09-26 01:40:20,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:20,143 INFO Out dated connection ,size=0 - -2025-09-26 01:40:20,143 INFO Connection check task end - -2025-09-26 01:40:21,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:23,144 INFO Connection check task start - -2025-09-26 01:40:23,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:23,144 INFO Out dated connection ,size=0 - -2025-09-26 01:40:23,144 INFO Connection check task end - -2025-09-26 01:40:24,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:26,145 INFO Connection check task start - -2025-09-26 01:40:26,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:26,145 INFO Out dated connection ,size=0 - -2025-09-26 01:40:26,145 INFO Connection check task end - -2025-09-26 01:40:27,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:29,146 INFO Connection check task start - -2025-09-26 01:40:29,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:29,146 INFO Out dated connection ,size=0 - -2025-09-26 01:40:29,146 INFO Connection check task end - -2025-09-26 01:40:30,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:32,147 INFO Connection check task start - -2025-09-26 01:40:32,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:32,147 INFO Out dated connection ,size=0 - -2025-09-26 01:40:32,148 INFO Connection check task end - -2025-09-26 01:40:33,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:35,148 INFO Connection check task start - -2025-09-26 01:40:35,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:35,148 INFO Out dated connection ,size=0 - -2025-09-26 01:40:35,148 INFO Connection check task end - -2025-09-26 01:40:36,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:38,148 INFO Connection check task start - -2025-09-26 01:40:38,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:38,148 INFO Out dated connection ,size=0 - -2025-09-26 01:40:38,149 INFO Connection check task end - -2025-09-26 01:40:39,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:41,149 INFO Connection check task start - -2025-09-26 01:40:41,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:41,149 INFO Out dated connection ,size=0 - -2025-09-26 01:40:41,149 INFO Connection check task end - -2025-09-26 01:40:42,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:44,149 INFO Connection check task start - -2025-09-26 01:40:44,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:44,150 INFO Out dated connection ,size=0 - -2025-09-26 01:40:44,150 INFO Connection check task end - -2025-09-26 01:40:45,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:47,151 INFO Connection check task start - -2025-09-26 01:40:47,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:47,151 INFO Out dated connection ,size=0 - -2025-09-26 01:40:47,151 INFO Connection check task end - -2025-09-26 01:40:48,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:50,152 INFO Connection check task start - -2025-09-26 01:40:50,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:50,152 INFO Out dated connection ,size=0 - -2025-09-26 01:40:50,152 INFO Connection check task end - -2025-09-26 01:40:51,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:53,153 INFO Connection check task start - -2025-09-26 01:40:53,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:53,153 INFO Out dated connection ,size=0 - -2025-09-26 01:40:53,153 INFO Connection check task end - -2025-09-26 01:40:54,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:56,153 INFO Connection check task start - -2025-09-26 01:40:56,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:56,154 INFO Out dated connection ,size=0 - -2025-09-26 01:40:56,154 INFO Connection check task end - -2025-09-26 01:40:57,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:40:59,155 INFO Connection check task start - -2025-09-26 01:40:59,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:40:59,155 INFO Out dated connection ,size=0 - -2025-09-26 01:40:59,155 INFO Connection check task end - -2025-09-26 01:41:00,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:02,156 INFO Connection check task start - -2025-09-26 01:41:02,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:02,156 INFO Out dated connection ,size=0 - -2025-09-26 01:41:02,156 INFO Connection check task end - -2025-09-26 01:41:03,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:05,157 INFO Connection check task start - -2025-09-26 01:41:05,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:05,157 INFO Out dated connection ,size=0 - -2025-09-26 01:41:05,157 INFO Connection check task end - -2025-09-26 01:41:06,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:08,157 INFO Connection check task start - -2025-09-26 01:41:08,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:08,158 INFO Out dated connection ,size=0 - -2025-09-26 01:41:08,158 INFO Connection check task end - -2025-09-26 01:41:09,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:11,158 INFO Connection check task start - -2025-09-26 01:41:11,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:11,158 INFO Out dated connection ,size=0 - -2025-09-26 01:41:11,158 INFO Connection check task end - -2025-09-26 01:41:12,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:14,159 INFO Connection check task start - -2025-09-26 01:41:14,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:14,160 INFO Out dated connection ,size=0 - -2025-09-26 01:41:14,160 INFO Connection check task end - -2025-09-26 01:41:15,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:17,160 INFO Connection check task start - -2025-09-26 01:41:17,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:17,160 INFO Out dated connection ,size=0 - -2025-09-26 01:41:17,160 INFO Connection check task end - -2025-09-26 01:41:18,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:20,161 INFO Connection check task start - -2025-09-26 01:41:20,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:20,161 INFO Out dated connection ,size=0 - -2025-09-26 01:41:20,161 INFO Connection check task end - -2025-09-26 01:41:21,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:23,161 INFO Connection check task start - -2025-09-26 01:41:23,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:23,161 INFO Out dated connection ,size=0 - -2025-09-26 01:41:23,161 INFO Connection check task end - -2025-09-26 01:41:24,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:26,162 INFO Connection check task start - -2025-09-26 01:41:26,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:26,162 INFO Out dated connection ,size=0 - -2025-09-26 01:41:26,162 INFO Connection check task end - -2025-09-26 01:41:27,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:29,163 INFO Connection check task start - -2025-09-26 01:41:29,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:29,163 INFO Out dated connection ,size=0 - -2025-09-26 01:41:29,163 INFO Connection check task end - -2025-09-26 01:41:30,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:32,163 INFO Connection check task start - -2025-09-26 01:41:32,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:32,163 INFO Out dated connection ,size=0 - -2025-09-26 01:41:32,163 INFO Connection check task end - -2025-09-26 01:41:33,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:35,163 INFO Connection check task start - -2025-09-26 01:41:35,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:35,163 INFO Out dated connection ,size=0 - -2025-09-26 01:41:35,163 INFO Connection check task end - -2025-09-26 01:41:36,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:38,164 INFO Connection check task start - -2025-09-26 01:41:38,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:38,164 INFO Out dated connection ,size=0 - -2025-09-26 01:41:38,164 INFO Connection check task end - -2025-09-26 01:41:39,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:41,166 INFO Connection check task start - -2025-09-26 01:41:41,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:41,166 INFO Out dated connection ,size=0 - -2025-09-26 01:41:41,166 INFO Connection check task end - -2025-09-26 01:41:42,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:44,166 INFO Connection check task start - -2025-09-26 01:41:44,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:44,167 INFO Out dated connection ,size=0 - -2025-09-26 01:41:44,167 INFO Connection check task end - -2025-09-26 01:41:45,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:47,169 INFO Connection check task start - -2025-09-26 01:41:47,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:47,169 INFO Out dated connection ,size=0 - -2025-09-26 01:41:47,169 INFO Connection check task end - -2025-09-26 01:41:48,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:50,171 INFO Connection check task start - -2025-09-26 01:41:50,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:50,171 INFO Out dated connection ,size=0 - -2025-09-26 01:41:50,171 INFO Connection check task end - -2025-09-26 01:41:51,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:53,171 INFO Connection check task start - -2025-09-26 01:41:53,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:53,171 INFO Out dated connection ,size=0 - -2025-09-26 01:41:53,171 INFO Connection check task end - -2025-09-26 01:41:54,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:56,173 INFO Connection check task start - -2025-09-26 01:41:56,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:56,173 INFO Out dated connection ,size=0 - -2025-09-26 01:41:56,173 INFO Connection check task end - -2025-09-26 01:41:57,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:41:59,174 INFO Connection check task start - -2025-09-26 01:41:59,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:41:59,174 INFO Out dated connection ,size=0 - -2025-09-26 01:41:59,174 INFO Connection check task end - -2025-09-26 01:42:00,387 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:02,175 INFO Connection check task start - -2025-09-26 01:42:02,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:02,175 INFO Out dated connection ,size=0 - -2025-09-26 01:42:02,175 INFO Connection check task end - -2025-09-26 01:42:03,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:05,176 INFO Connection check task start - -2025-09-26 01:42:05,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:05,176 INFO Out dated connection ,size=0 - -2025-09-26 01:42:05,176 INFO Connection check task end - -2025-09-26 01:42:06,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:08,177 INFO Connection check task start - -2025-09-26 01:42:08,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:08,177 INFO Out dated connection ,size=0 - -2025-09-26 01:42:08,177 INFO Connection check task end - -2025-09-26 01:42:09,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:11,177 INFO Connection check task start - -2025-09-26 01:42:11,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:11,177 INFO Out dated connection ,size=0 - -2025-09-26 01:42:11,178 INFO Connection check task end - -2025-09-26 01:42:12,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:14,178 INFO Connection check task start - -2025-09-26 01:42:14,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:14,178 INFO Out dated connection ,size=0 - -2025-09-26 01:42:14,178 INFO Connection check task end - -2025-09-26 01:42:15,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:17,179 INFO Connection check task start - -2025-09-26 01:42:17,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:17,179 INFO Out dated connection ,size=0 - -2025-09-26 01:42:17,179 INFO Connection check task end - -2025-09-26 01:42:18,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:20,180 INFO Connection check task start - -2025-09-26 01:42:20,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:20,180 INFO Out dated connection ,size=0 - -2025-09-26 01:42:20,180 INFO Connection check task end - -2025-09-26 01:42:21,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:23,180 INFO Connection check task start - -2025-09-26 01:42:23,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:23,180 INFO Out dated connection ,size=0 - -2025-09-26 01:42:23,180 INFO Connection check task end - -2025-09-26 01:42:24,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:26,181 INFO Connection check task start - -2025-09-26 01:42:26,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:26,181 INFO Out dated connection ,size=0 - -2025-09-26 01:42:26,181 INFO Connection check task end - -2025-09-26 01:42:27,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:29,181 INFO Connection check task start - -2025-09-26 01:42:29,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:29,181 INFO Out dated connection ,size=0 - -2025-09-26 01:42:29,181 INFO Connection check task end - -2025-09-26 01:42:30,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:32,181 INFO Connection check task start - -2025-09-26 01:42:32,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:32,181 INFO Out dated connection ,size=0 - -2025-09-26 01:42:32,181 INFO Connection check task end - -2025-09-26 01:42:33,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:35,182 INFO Connection check task start - -2025-09-26 01:42:35,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:35,182 INFO Out dated connection ,size=0 - -2025-09-26 01:42:35,182 INFO Connection check task end - -2025-09-26 01:42:36,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:38,183 INFO Connection check task start - -2025-09-26 01:42:38,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:38,183 INFO Out dated connection ,size=0 - -2025-09-26 01:42:38,183 INFO Connection check task end - -2025-09-26 01:42:39,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:41,183 INFO Connection check task start - -2025-09-26 01:42:41,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:41,184 INFO Out dated connection ,size=0 - -2025-09-26 01:42:41,184 INFO Connection check task end - -2025-09-26 01:42:42,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:44,184 INFO Connection check task start - -2025-09-26 01:42:44,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:44,184 INFO Out dated connection ,size=0 - -2025-09-26 01:42:44,184 INFO Connection check task end - -2025-09-26 01:42:45,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:47,185 INFO Connection check task start - -2025-09-26 01:42:47,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:47,185 INFO Out dated connection ,size=0 - -2025-09-26 01:42:47,185 INFO Connection check task end - -2025-09-26 01:42:48,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:50,185 INFO Connection check task start - -2025-09-26 01:42:50,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:50,186 INFO Out dated connection ,size=0 - -2025-09-26 01:42:50,186 INFO Connection check task end - -2025-09-26 01:42:51,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:53,188 INFO Connection check task start - -2025-09-26 01:42:53,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:53,188 INFO Out dated connection ,size=0 - -2025-09-26 01:42:53,188 INFO Connection check task end - -2025-09-26 01:42:54,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:56,188 INFO Connection check task start - -2025-09-26 01:42:56,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:56,189 INFO Out dated connection ,size=0 - -2025-09-26 01:42:56,189 INFO Connection check task end - -2025-09-26 01:42:57,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:42:59,189 INFO Connection check task start - -2025-09-26 01:42:59,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:42:59,189 INFO Out dated connection ,size=0 - -2025-09-26 01:42:59,189 INFO Connection check task end - -2025-09-26 01:43:00,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:02,189 INFO Connection check task start - -2025-09-26 01:43:02,190 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:02,190 INFO Out dated connection ,size=0 - -2025-09-26 01:43:02,190 INFO Connection check task end - -2025-09-26 01:43:03,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:05,191 INFO Connection check task start - -2025-09-26 01:43:05,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:05,191 INFO Out dated connection ,size=0 - -2025-09-26 01:43:05,191 INFO Connection check task end - -2025-09-26 01:43:06,407 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:08,191 INFO Connection check task start - -2025-09-26 01:43:08,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:08,191 INFO Out dated connection ,size=0 - -2025-09-26 01:43:08,191 INFO Connection check task end - -2025-09-26 01:43:09,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:11,192 INFO Connection check task start - -2025-09-26 01:43:11,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:11,192 INFO Out dated connection ,size=0 - -2025-09-26 01:43:11,192 INFO Connection check task end - -2025-09-26 01:43:12,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:14,192 INFO Connection check task start - -2025-09-26 01:43:14,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:14,193 INFO Out dated connection ,size=0 - -2025-09-26 01:43:14,193 INFO Connection check task end - -2025-09-26 01:43:15,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:17,193 INFO Connection check task start - -2025-09-26 01:43:17,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:17,193 INFO Out dated connection ,size=0 - -2025-09-26 01:43:17,193 INFO Connection check task end - -2025-09-26 01:43:18,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:20,194 INFO Connection check task start - -2025-09-26 01:43:20,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:20,194 INFO Out dated connection ,size=0 - -2025-09-26 01:43:20,194 INFO Connection check task end - -2025-09-26 01:43:21,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:23,195 INFO Connection check task start - -2025-09-26 01:43:23,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:23,195 INFO Out dated connection ,size=0 - -2025-09-26 01:43:23,195 INFO Connection check task end - -2025-09-26 01:43:24,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:26,196 INFO Connection check task start - -2025-09-26 01:43:26,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:26,196 INFO Out dated connection ,size=0 - -2025-09-26 01:43:26,196 INFO Connection check task end - -2025-09-26 01:43:27,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:29,197 INFO Connection check task start - -2025-09-26 01:43:29,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:29,197 INFO Out dated connection ,size=0 - -2025-09-26 01:43:29,197 INFO Connection check task end - -2025-09-26 01:43:30,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:32,198 INFO Connection check task start - -2025-09-26 01:43:32,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:32,198 INFO Out dated connection ,size=0 - -2025-09-26 01:43:32,198 INFO Connection check task end - -2025-09-26 01:43:33,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:35,199 INFO Connection check task start - -2025-09-26 01:43:35,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:35,200 INFO Out dated connection ,size=0 - -2025-09-26 01:43:35,200 INFO Connection check task end - -2025-09-26 01:43:36,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:38,200 INFO Connection check task start - -2025-09-26 01:43:38,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:38,200 INFO Out dated connection ,size=0 - -2025-09-26 01:43:38,200 INFO Connection check task end - -2025-09-26 01:43:39,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:41,201 INFO Connection check task start - -2025-09-26 01:43:41,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:41,201 INFO Out dated connection ,size=0 - -2025-09-26 01:43:41,201 INFO Connection check task end - -2025-09-26 01:43:42,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:44,202 INFO Connection check task start - -2025-09-26 01:43:44,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:44,202 INFO Out dated connection ,size=0 - -2025-09-26 01:43:44,202 INFO Connection check task end - -2025-09-26 01:43:45,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:47,203 INFO Connection check task start - -2025-09-26 01:43:47,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:47,203 INFO Out dated connection ,size=0 - -2025-09-26 01:43:47,203 INFO Connection check task end - -2025-09-26 01:43:48,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:50,204 INFO Connection check task start - -2025-09-26 01:43:50,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:50,204 INFO Out dated connection ,size=0 - -2025-09-26 01:43:50,204 INFO Connection check task end - -2025-09-26 01:43:51,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:53,205 INFO Connection check task start - -2025-09-26 01:43:53,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:53,205 INFO Out dated connection ,size=0 - -2025-09-26 01:43:53,205 INFO Connection check task end - -2025-09-26 01:43:54,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:56,205 INFO Connection check task start - -2025-09-26 01:43:56,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:56,206 INFO Out dated connection ,size=0 - -2025-09-26 01:43:56,206 INFO Connection check task end - -2025-09-26 01:43:57,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:43:59,206 INFO Connection check task start - -2025-09-26 01:43:59,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:43:59,207 INFO Out dated connection ,size=0 - -2025-09-26 01:43:59,207 INFO Connection check task end - -2025-09-26 01:44:00,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:02,207 INFO Connection check task start - -2025-09-26 01:44:02,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:02,208 INFO Out dated connection ,size=0 - -2025-09-26 01:44:02,208 INFO Connection check task end - -2025-09-26 01:44:03,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:05,208 INFO Connection check task start - -2025-09-26 01:44:05,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:05,208 INFO Out dated connection ,size=0 - -2025-09-26 01:44:05,208 INFO Connection check task end - -2025-09-26 01:44:06,442 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:08,208 INFO Connection check task start - -2025-09-26 01:44:08,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:08,209 INFO Out dated connection ,size=0 - -2025-09-26 01:44:08,209 INFO Connection check task end - -2025-09-26 01:44:09,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:11,210 INFO Connection check task start - -2025-09-26 01:44:11,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:11,210 INFO Out dated connection ,size=0 - -2025-09-26 01:44:11,210 INFO Connection check task end - -2025-09-26 01:44:12,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:14,211 INFO Connection check task start - -2025-09-26 01:44:14,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:14,211 INFO Out dated connection ,size=0 - -2025-09-26 01:44:14,211 INFO Connection check task end - -2025-09-26 01:44:15,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:17,212 INFO Connection check task start - -2025-09-26 01:44:17,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:17,213 INFO Out dated connection ,size=0 - -2025-09-26 01:44:17,213 INFO Connection check task end - -2025-09-26 01:44:18,445 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:20,213 INFO Connection check task start - -2025-09-26 01:44:20,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:20,213 INFO Out dated connection ,size=0 - -2025-09-26 01:44:20,214 INFO Connection check task end - -2025-09-26 01:44:21,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:23,214 INFO Connection check task start - -2025-09-26 01:44:23,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:23,214 INFO Out dated connection ,size=0 - -2025-09-26 01:44:23,214 INFO Connection check task end - -2025-09-26 01:44:24,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:26,215 INFO Connection check task start - -2025-09-26 01:44:26,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:26,215 INFO Out dated connection ,size=0 - -2025-09-26 01:44:26,215 INFO Connection check task end - -2025-09-26 01:44:27,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:29,216 INFO Connection check task start - -2025-09-26 01:44:29,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:29,216 INFO Out dated connection ,size=0 - -2025-09-26 01:44:29,216 INFO Connection check task end - -2025-09-26 01:44:30,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:32,217 INFO Connection check task start - -2025-09-26 01:44:32,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:32,218 INFO Out dated connection ,size=0 - -2025-09-26 01:44:32,218 INFO Connection check task end - -2025-09-26 01:44:33,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:35,218 INFO Connection check task start - -2025-09-26 01:44:35,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:35,219 INFO Out dated connection ,size=0 - -2025-09-26 01:44:35,219 INFO Connection check task end - -2025-09-26 01:44:36,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:38,219 INFO Connection check task start - -2025-09-26 01:44:38,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:38,219 INFO Out dated connection ,size=0 - -2025-09-26 01:44:38,219 INFO Connection check task end - -2025-09-26 01:44:39,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:41,220 INFO Connection check task start - -2025-09-26 01:44:41,220 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:41,220 INFO Out dated connection ,size=0 - -2025-09-26 01:44:41,220 INFO Connection check task end - -2025-09-26 01:44:42,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:44,221 INFO Connection check task start - -2025-09-26 01:44:44,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:44,221 INFO Out dated connection ,size=0 - -2025-09-26 01:44:44,221 INFO Connection check task end - -2025-09-26 01:44:45,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:47,221 INFO Connection check task start - -2025-09-26 01:44:47,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:47,222 INFO Out dated connection ,size=0 - -2025-09-26 01:44:47,222 INFO Connection check task end - -2025-09-26 01:44:48,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:50,223 INFO Connection check task start - -2025-09-26 01:44:50,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:50,223 INFO Out dated connection ,size=0 - -2025-09-26 01:44:50,223 INFO Connection check task end - -2025-09-26 01:44:51,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:53,224 INFO Connection check task start - -2025-09-26 01:44:53,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:53,224 INFO Out dated connection ,size=0 - -2025-09-26 01:44:53,224 INFO Connection check task end - -2025-09-26 01:44:54,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:56,224 INFO Connection check task start - -2025-09-26 01:44:56,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:56,224 INFO Out dated connection ,size=0 - -2025-09-26 01:44:56,224 INFO Connection check task end - -2025-09-26 01:44:57,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:44:59,225 INFO Connection check task start - -2025-09-26 01:44:59,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:44:59,225 INFO Out dated connection ,size=0 - -2025-09-26 01:44:59,225 INFO Connection check task end - -2025-09-26 01:45:00,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:02,226 INFO Connection check task start - -2025-09-26 01:45:02,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:02,226 INFO Out dated connection ,size=0 - -2025-09-26 01:45:02,226 INFO Connection check task end - -2025-09-26 01:45:03,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:05,227 INFO Connection check task start - -2025-09-26 01:45:05,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:05,227 INFO Out dated connection ,size=0 - -2025-09-26 01:45:05,228 INFO Connection check task end - -2025-09-26 01:45:06,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:08,228 INFO Connection check task start - -2025-09-26 01:45:08,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:08,228 INFO Out dated connection ,size=0 - -2025-09-26 01:45:08,228 INFO Connection check task end - -2025-09-26 01:45:09,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:11,229 INFO Connection check task start - -2025-09-26 01:45:11,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:11,229 INFO Out dated connection ,size=0 - -2025-09-26 01:45:11,229 INFO Connection check task end - -2025-09-26 01:45:12,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:14,230 INFO Connection check task start - -2025-09-26 01:45:14,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:14,230 INFO Out dated connection ,size=0 - -2025-09-26 01:45:14,230 INFO Connection check task end - -2025-09-26 01:45:15,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:17,232 INFO Connection check task start - -2025-09-26 01:45:17,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:17,232 INFO Out dated connection ,size=0 - -2025-09-26 01:45:17,232 INFO Connection check task end - -2025-09-26 01:45:18,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:20,232 INFO Connection check task start - -2025-09-26 01:45:20,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:20,233 INFO Out dated connection ,size=0 - -2025-09-26 01:45:20,233 INFO Connection check task end - -2025-09-26 01:45:21,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:23,233 INFO Connection check task start - -2025-09-26 01:45:23,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:23,234 INFO Out dated connection ,size=0 - -2025-09-26 01:45:23,234 INFO Connection check task end - -2025-09-26 01:45:24,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:26,235 INFO Connection check task start - -2025-09-26 01:45:26,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:26,235 INFO Out dated connection ,size=0 - -2025-09-26 01:45:26,235 INFO Connection check task end - -2025-09-26 01:45:27,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:29,236 INFO Connection check task start - -2025-09-26 01:45:29,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:29,236 INFO Out dated connection ,size=0 - -2025-09-26 01:45:29,236 INFO Connection check task end - -2025-09-26 01:45:30,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:32,237 INFO Connection check task start - -2025-09-26 01:45:32,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:32,237 INFO Out dated connection ,size=0 - -2025-09-26 01:45:32,237 INFO Connection check task end - -2025-09-26 01:45:33,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:35,239 INFO Connection check task start - -2025-09-26 01:45:35,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:35,239 INFO Out dated connection ,size=0 - -2025-09-26 01:45:35,239 INFO Connection check task end - -2025-09-26 01:45:36,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:38,240 INFO Connection check task start - -2025-09-26 01:45:38,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:38,240 INFO Out dated connection ,size=0 - -2025-09-26 01:45:38,240 INFO Connection check task end - -2025-09-26 01:45:39,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:41,241 INFO Connection check task start - -2025-09-26 01:45:41,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:41,241 INFO Out dated connection ,size=0 - -2025-09-26 01:45:41,242 INFO Connection check task end - -2025-09-26 01:45:42,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:44,242 INFO Connection check task start - -2025-09-26 01:45:44,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:44,242 INFO Out dated connection ,size=0 - -2025-09-26 01:45:44,242 INFO Connection check task end - -2025-09-26 01:45:45,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:47,243 INFO Connection check task start - -2025-09-26 01:45:47,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:47,243 INFO Out dated connection ,size=0 - -2025-09-26 01:45:47,243 INFO Connection check task end - -2025-09-26 01:45:48,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:50,243 INFO Connection check task start - -2025-09-26 01:45:50,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:50,243 INFO Out dated connection ,size=0 - -2025-09-26 01:45:50,243 INFO Connection check task end - -2025-09-26 01:45:51,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:53,244 INFO Connection check task start - -2025-09-26 01:45:53,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:53,244 INFO Out dated connection ,size=0 - -2025-09-26 01:45:53,244 INFO Connection check task end - -2025-09-26 01:45:54,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:56,245 INFO Connection check task start - -2025-09-26 01:45:56,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:56,245 INFO Out dated connection ,size=0 - -2025-09-26 01:45:56,245 INFO Connection check task end - -2025-09-26 01:45:57,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:45:59,245 INFO Connection check task start - -2025-09-26 01:45:59,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:45:59,246 INFO Out dated connection ,size=0 - -2025-09-26 01:45:59,246 INFO Connection check task end - -2025-09-26 01:46:00,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:02,246 INFO Connection check task start - -2025-09-26 01:46:02,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:02,246 INFO Out dated connection ,size=0 - -2025-09-26 01:46:02,246 INFO Connection check task end - -2025-09-26 01:46:03,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:05,247 INFO Connection check task start - -2025-09-26 01:46:05,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:05,247 INFO Out dated connection ,size=0 - -2025-09-26 01:46:05,247 INFO Connection check task end - -2025-09-26 01:46:06,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:08,248 INFO Connection check task start - -2025-09-26 01:46:08,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:08,248 INFO Out dated connection ,size=0 - -2025-09-26 01:46:08,248 INFO Connection check task end - -2025-09-26 01:46:09,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:11,249 INFO Connection check task start - -2025-09-26 01:46:11,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:11,249 INFO Out dated connection ,size=0 - -2025-09-26 01:46:11,250 INFO Connection check task end - -2025-09-26 01:46:12,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:14,251 INFO Connection check task start - -2025-09-26 01:46:14,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:14,251 INFO Out dated connection ,size=0 - -2025-09-26 01:46:14,251 INFO Connection check task end - -2025-09-26 01:46:15,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:17,253 INFO Connection check task start - -2025-09-26 01:46:17,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:17,253 INFO Out dated connection ,size=0 - -2025-09-26 01:46:17,253 INFO Connection check task end - -2025-09-26 01:46:18,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:20,253 INFO Connection check task start - -2025-09-26 01:46:20,254 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:20,254 INFO Out dated connection ,size=0 - -2025-09-26 01:46:20,254 INFO Connection check task end - -2025-09-26 01:46:21,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:23,255 INFO Connection check task start - -2025-09-26 01:46:23,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:23,255 INFO Out dated connection ,size=0 - -2025-09-26 01:46:23,255 INFO Connection check task end - -2025-09-26 01:46:24,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:26,257 INFO Connection check task start - -2025-09-26 01:46:26,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:26,257 INFO Out dated connection ,size=0 - -2025-09-26 01:46:26,257 INFO Connection check task end - -2025-09-26 01:46:27,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:29,257 INFO Connection check task start - -2025-09-26 01:46:29,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:29,257 INFO Out dated connection ,size=0 - -2025-09-26 01:46:29,257 INFO Connection check task end - -2025-09-26 01:46:30,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:32,259 INFO Connection check task start - -2025-09-26 01:46:32,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:32,259 INFO Out dated connection ,size=0 - -2025-09-26 01:46:32,259 INFO Connection check task end - -2025-09-26 01:46:33,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:35,260 INFO Connection check task start - -2025-09-26 01:46:35,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:35,260 INFO Out dated connection ,size=0 - -2025-09-26 01:46:35,260 INFO Connection check task end - -2025-09-26 01:46:36,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:38,260 INFO Connection check task start - -2025-09-26 01:46:38,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:38,261 INFO Out dated connection ,size=0 - -2025-09-26 01:46:38,261 INFO Connection check task end - -2025-09-26 01:46:39,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:41,262 INFO Connection check task start - -2025-09-26 01:46:41,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:41,262 INFO Out dated connection ,size=0 - -2025-09-26 01:46:41,262 INFO Connection check task end - -2025-09-26 01:46:42,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:44,262 INFO Connection check task start - -2025-09-26 01:46:44,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:44,262 INFO Out dated connection ,size=0 - -2025-09-26 01:46:44,262 INFO Connection check task end - -2025-09-26 01:46:45,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:47,263 INFO Connection check task start - -2025-09-26 01:46:47,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:47,263 INFO Out dated connection ,size=0 - -2025-09-26 01:46:47,263 INFO Connection check task end - -2025-09-26 01:46:48,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:50,263 INFO Connection check task start - -2025-09-26 01:46:50,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:50,264 INFO Out dated connection ,size=0 - -2025-09-26 01:46:50,264 INFO Connection check task end - -2025-09-26 01:46:51,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:53,264 INFO Connection check task start - -2025-09-26 01:46:53,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:53,264 INFO Out dated connection ,size=0 - -2025-09-26 01:46:53,264 INFO Connection check task end - -2025-09-26 01:46:54,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:56,265 INFO Connection check task start - -2025-09-26 01:46:56,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:56,265 INFO Out dated connection ,size=0 - -2025-09-26 01:46:56,265 INFO Connection check task end - -2025-09-26 01:46:57,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:46:59,266 INFO Connection check task start - -2025-09-26 01:46:59,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:46:59,266 INFO Out dated connection ,size=0 - -2025-09-26 01:46:59,266 INFO Connection check task end - -2025-09-26 01:47:00,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:02,267 INFO Connection check task start - -2025-09-26 01:47:02,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:02,267 INFO Out dated connection ,size=0 - -2025-09-26 01:47:02,267 INFO Connection check task end - -2025-09-26 01:47:03,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:05,268 INFO Connection check task start - -2025-09-26 01:47:05,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:05,268 INFO Out dated connection ,size=0 - -2025-09-26 01:47:05,268 INFO Connection check task end - -2025-09-26 01:47:06,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:08,268 INFO Connection check task start - -2025-09-26 01:47:08,268 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:08,269 INFO Out dated connection ,size=0 - -2025-09-26 01:47:08,269 INFO Connection check task end - -2025-09-26 01:47:09,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:11,269 INFO Connection check task start - -2025-09-26 01:47:11,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:11,269 INFO Out dated connection ,size=0 - -2025-09-26 01:47:11,269 INFO Connection check task end - -2025-09-26 01:47:12,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:14,271 INFO Connection check task start - -2025-09-26 01:47:14,271 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:14,271 INFO Out dated connection ,size=0 - -2025-09-26 01:47:14,271 INFO Connection check task end - -2025-09-26 01:47:15,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:17,271 INFO Connection check task start - -2025-09-26 01:47:17,272 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:17,272 INFO Out dated connection ,size=0 - -2025-09-26 01:47:17,272 INFO Connection check task end - -2025-09-26 01:47:18,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:20,273 INFO Connection check task start - -2025-09-26 01:47:20,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:20,273 INFO Out dated connection ,size=0 - -2025-09-26 01:47:20,273 INFO Connection check task end - -2025-09-26 01:47:21,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:23,273 INFO Connection check task start - -2025-09-26 01:47:23,273 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:23,273 INFO Out dated connection ,size=0 - -2025-09-26 01:47:23,273 INFO Connection check task end - -2025-09-26 01:47:24,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:26,274 INFO Connection check task start - -2025-09-26 01:47:26,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:26,274 INFO Out dated connection ,size=0 - -2025-09-26 01:47:26,274 INFO Connection check task end - -2025-09-26 01:47:27,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:29,274 INFO Connection check task start - -2025-09-26 01:47:29,274 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:29,274 INFO Out dated connection ,size=0 - -2025-09-26 01:47:29,275 INFO Connection check task end - -2025-09-26 01:47:30,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:32,275 INFO Connection check task start - -2025-09-26 01:47:32,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:32,275 INFO Out dated connection ,size=0 - -2025-09-26 01:47:32,275 INFO Connection check task end - -2025-09-26 01:47:33,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:35,275 INFO Connection check task start - -2025-09-26 01:47:35,275 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:35,275 INFO Out dated connection ,size=0 - -2025-09-26 01:47:35,275 INFO Connection check task end - -2025-09-26 01:47:36,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:38,276 INFO Connection check task start - -2025-09-26 01:47:38,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:38,276 INFO Out dated connection ,size=0 - -2025-09-26 01:47:38,276 INFO Connection check task end - -2025-09-26 01:47:39,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:41,276 INFO Connection check task start - -2025-09-26 01:47:41,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:41,277 INFO Out dated connection ,size=0 - -2025-09-26 01:47:41,277 INFO Connection check task end - -2025-09-26 01:47:42,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:44,277 INFO Connection check task start - -2025-09-26 01:47:44,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:44,277 INFO Out dated connection ,size=0 - -2025-09-26 01:47:44,277 INFO Connection check task end - -2025-09-26 01:47:45,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:47,277 INFO Connection check task start - -2025-09-26 01:47:47,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:47,278 INFO Out dated connection ,size=0 - -2025-09-26 01:47:47,278 INFO Connection check task end - -2025-09-26 01:47:48,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:50,278 INFO Connection check task start - -2025-09-26 01:47:50,278 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:50,278 INFO Out dated connection ,size=0 - -2025-09-26 01:47:50,278 INFO Connection check task end - -2025-09-26 01:47:51,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:53,279 INFO Connection check task start - -2025-09-26 01:47:53,279 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:53,279 INFO Out dated connection ,size=0 - -2025-09-26 01:47:53,279 INFO Connection check task end - -2025-09-26 01:47:54,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:56,280 INFO Connection check task start - -2025-09-26 01:47:56,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:56,281 INFO Out dated connection ,size=0 - -2025-09-26 01:47:56,281 INFO Connection check task end - -2025-09-26 01:47:57,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:47:59,281 INFO Connection check task start - -2025-09-26 01:47:59,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:47:59,281 INFO Out dated connection ,size=0 - -2025-09-26 01:47:59,281 INFO Connection check task end - -2025-09-26 01:48:00,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:02,282 INFO Connection check task start - -2025-09-26 01:48:02,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:02,282 INFO Out dated connection ,size=0 - -2025-09-26 01:48:02,282 INFO Connection check task end - -2025-09-26 01:48:03,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:05,282 INFO Connection check task start - -2025-09-26 01:48:05,282 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:05,282 INFO Out dated connection ,size=0 - -2025-09-26 01:48:05,282 INFO Connection check task end - -2025-09-26 01:48:06,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:08,284 INFO Connection check task start - -2025-09-26 01:48:08,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:08,284 INFO Out dated connection ,size=0 - -2025-09-26 01:48:08,284 INFO Connection check task end - -2025-09-26 01:48:09,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:11,284 INFO Connection check task start - -2025-09-26 01:48:11,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:11,285 INFO Out dated connection ,size=0 - -2025-09-26 01:48:11,285 INFO Connection check task end - -2025-09-26 01:48:12,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:14,285 INFO Connection check task start - -2025-09-26 01:48:14,285 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:14,286 INFO Out dated connection ,size=0 - -2025-09-26 01:48:14,286 INFO Connection check task end - -2025-09-26 01:48:15,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:17,286 INFO Connection check task start - -2025-09-26 01:48:17,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:17,286 INFO Out dated connection ,size=0 - -2025-09-26 01:48:17,286 INFO Connection check task end - -2025-09-26 01:48:18,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:20,286 INFO Connection check task start - -2025-09-26 01:48:20,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:20,287 INFO Out dated connection ,size=0 - -2025-09-26 01:48:20,287 INFO Connection check task end - -2025-09-26 01:48:21,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:23,288 INFO Connection check task start - -2025-09-26 01:48:23,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:23,288 INFO Out dated connection ,size=0 - -2025-09-26 01:48:23,288 INFO Connection check task end - -2025-09-26 01:48:24,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:26,289 INFO Connection check task start - -2025-09-26 01:48:26,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:26,289 INFO Out dated connection ,size=0 - -2025-09-26 01:48:26,289 INFO Connection check task end - -2025-09-26 01:48:27,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:29,289 INFO Connection check task start - -2025-09-26 01:48:29,289 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:29,289 INFO Out dated connection ,size=0 - -2025-09-26 01:48:29,289 INFO Connection check task end - -2025-09-26 01:48:30,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:32,290 INFO Connection check task start - -2025-09-26 01:48:32,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:32,290 INFO Out dated connection ,size=0 - -2025-09-26 01:48:32,290 INFO Connection check task end - -2025-09-26 01:48:33,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:35,290 INFO Connection check task start - -2025-09-26 01:48:35,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:35,290 INFO Out dated connection ,size=0 - -2025-09-26 01:48:35,290 INFO Connection check task end - -2025-09-26 01:48:36,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:38,292 INFO Connection check task start - -2025-09-26 01:48:38,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:38,292 INFO Out dated connection ,size=0 - -2025-09-26 01:48:38,292 INFO Connection check task end - -2025-09-26 01:48:39,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:41,293 INFO Connection check task start - -2025-09-26 01:48:41,293 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:41,293 INFO Out dated connection ,size=0 - -2025-09-26 01:48:41,293 INFO Connection check task end - -2025-09-26 01:48:42,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:44,293 INFO Connection check task start - -2025-09-26 01:48:44,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:44,294 INFO Out dated connection ,size=0 - -2025-09-26 01:48:44,294 INFO Connection check task end - -2025-09-26 01:48:45,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:47,294 INFO Connection check task start - -2025-09-26 01:48:47,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:47,294 INFO Out dated connection ,size=0 - -2025-09-26 01:48:47,294 INFO Connection check task end - -2025-09-26 01:48:48,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:50,294 INFO Connection check task start - -2025-09-26 01:48:50,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:50,295 INFO Out dated connection ,size=0 - -2025-09-26 01:48:50,295 INFO Connection check task end - -2025-09-26 01:48:51,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:53,295 INFO Connection check task start - -2025-09-26 01:48:53,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:53,295 INFO Out dated connection ,size=0 - -2025-09-26 01:48:53,295 INFO Connection check task end - -2025-09-26 01:48:54,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:56,296 INFO Connection check task start - -2025-09-26 01:48:56,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:56,296 INFO Out dated connection ,size=0 - -2025-09-26 01:48:56,296 INFO Connection check task end - -2025-09-26 01:48:57,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:48:59,297 INFO Connection check task start - -2025-09-26 01:48:59,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:48:59,297 INFO Out dated connection ,size=0 - -2025-09-26 01:48:59,297 INFO Connection check task end - -2025-09-26 01:49:00,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:02,297 INFO Connection check task start - -2025-09-26 01:49:02,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:02,297 INFO Out dated connection ,size=0 - -2025-09-26 01:49:02,297 INFO Connection check task end - -2025-09-26 01:49:03,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:05,298 INFO Connection check task start - -2025-09-26 01:49:05,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:05,298 INFO Out dated connection ,size=0 - -2025-09-26 01:49:05,298 INFO Connection check task end - -2025-09-26 01:49:06,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:08,299 INFO Connection check task start - -2025-09-26 01:49:08,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:08,299 INFO Out dated connection ,size=0 - -2025-09-26 01:49:08,299 INFO Connection check task end - -2025-09-26 01:49:09,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:11,300 INFO Connection check task start - -2025-09-26 01:49:11,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:11,300 INFO Out dated connection ,size=0 - -2025-09-26 01:49:11,300 INFO Connection check task end - -2025-09-26 01:49:12,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:14,300 INFO Connection check task start - -2025-09-26 01:49:14,300 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:14,300 INFO Out dated connection ,size=0 - -2025-09-26 01:49:14,300 INFO Connection check task end - -2025-09-26 01:49:15,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:17,301 INFO Connection check task start - -2025-09-26 01:49:17,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:17,301 INFO Out dated connection ,size=0 - -2025-09-26 01:49:17,301 INFO Connection check task end - -2025-09-26 01:49:18,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:20,301 INFO Connection check task start - -2025-09-26 01:49:20,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:20,301 INFO Out dated connection ,size=0 - -2025-09-26 01:49:20,301 INFO Connection check task end - -2025-09-26 01:49:21,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:23,302 INFO Connection check task start - -2025-09-26 01:49:23,302 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:23,302 INFO Out dated connection ,size=0 - -2025-09-26 01:49:23,302 INFO Connection check task end - -2025-09-26 01:49:24,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:26,303 INFO Connection check task start - -2025-09-26 01:49:26,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:26,303 INFO Out dated connection ,size=0 - -2025-09-26 01:49:26,303 INFO Connection check task end - -2025-09-26 01:49:27,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:29,304 INFO Connection check task start - -2025-09-26 01:49:29,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:29,304 INFO Out dated connection ,size=0 - -2025-09-26 01:49:29,304 INFO Connection check task end - -2025-09-26 01:49:30,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:32,305 INFO Connection check task start - -2025-09-26 01:49:32,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:32,306 INFO Out dated connection ,size=0 - -2025-09-26 01:49:32,306 INFO Connection check task end - -2025-09-26 01:49:33,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:35,306 INFO Connection check task start - -2025-09-26 01:49:35,306 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:35,306 INFO Out dated connection ,size=0 - -2025-09-26 01:49:35,306 INFO Connection check task end - -2025-09-26 01:49:36,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:38,307 INFO Connection check task start - -2025-09-26 01:49:38,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:38,307 INFO Out dated connection ,size=0 - -2025-09-26 01:49:38,307 INFO Connection check task end - -2025-09-26 01:49:39,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:41,308 INFO Connection check task start - -2025-09-26 01:49:41,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:41,309 INFO Out dated connection ,size=0 - -2025-09-26 01:49:41,309 INFO Connection check task end - -2025-09-26 01:49:42,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:44,309 INFO Connection check task start - -2025-09-26 01:49:44,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:44,309 INFO Out dated connection ,size=0 - -2025-09-26 01:49:44,309 INFO Connection check task end - -2025-09-26 01:49:45,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:47,310 INFO Connection check task start - -2025-09-26 01:49:47,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:47,310 INFO Out dated connection ,size=0 - -2025-09-26 01:49:47,310 INFO Connection check task end - -2025-09-26 01:49:48,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:50,311 INFO Connection check task start - -2025-09-26 01:49:50,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:50,311 INFO Out dated connection ,size=0 - -2025-09-26 01:49:50,311 INFO Connection check task end - -2025-09-26 01:49:51,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:53,311 INFO Connection check task start - -2025-09-26 01:49:53,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:53,312 INFO Out dated connection ,size=0 - -2025-09-26 01:49:53,312 INFO Connection check task end - -2025-09-26 01:49:54,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:56,312 INFO Connection check task start - -2025-09-26 01:49:56,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:56,312 INFO Out dated connection ,size=0 - -2025-09-26 01:49:56,313 INFO Connection check task end - -2025-09-26 01:49:57,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:49:59,313 INFO Connection check task start - -2025-09-26 01:49:59,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:49:59,313 INFO Out dated connection ,size=0 - -2025-09-26 01:49:59,313 INFO Connection check task end - -2025-09-26 01:50:00,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:02,314 INFO Connection check task start - -2025-09-26 01:50:02,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:02,314 INFO Out dated connection ,size=0 - -2025-09-26 01:50:02,314 INFO Connection check task end - -2025-09-26 01:50:03,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:05,315 INFO Connection check task start - -2025-09-26 01:50:05,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:05,315 INFO Out dated connection ,size=0 - -2025-09-26 01:50:05,315 INFO Connection check task end - -2025-09-26 01:50:06,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:08,315 INFO Connection check task start - -2025-09-26 01:50:08,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:08,316 INFO Out dated connection ,size=0 - -2025-09-26 01:50:08,316 INFO Connection check task end - -2025-09-26 01:50:09,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:11,317 INFO Connection check task start - -2025-09-26 01:50:11,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:11,317 INFO Out dated connection ,size=0 - -2025-09-26 01:50:11,317 INFO Connection check task end - -2025-09-26 01:50:12,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:14,318 INFO Connection check task start - -2025-09-26 01:50:14,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:14,319 INFO Out dated connection ,size=0 - -2025-09-26 01:50:14,319 INFO Connection check task end - -2025-09-26 01:50:15,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:17,319 INFO Connection check task start - -2025-09-26 01:50:17,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:17,320 INFO Out dated connection ,size=0 - -2025-09-26 01:50:17,320 INFO Connection check task end - -2025-09-26 01:50:18,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:20,321 INFO Connection check task start - -2025-09-26 01:50:20,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:20,321 INFO Out dated connection ,size=0 - -2025-09-26 01:50:20,321 INFO Connection check task end - -2025-09-26 01:50:21,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:23,321 INFO Connection check task start - -2025-09-26 01:50:23,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:23,322 INFO Out dated connection ,size=0 - -2025-09-26 01:50:23,322 INFO Connection check task end - -2025-09-26 01:50:24,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:26,322 INFO Connection check task start - -2025-09-26 01:50:26,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:26,323 INFO Out dated connection ,size=0 - -2025-09-26 01:50:26,323 INFO Connection check task end - -2025-09-26 01:50:27,533 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:29,323 INFO Connection check task start - -2025-09-26 01:50:29,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:29,323 INFO Out dated connection ,size=0 - -2025-09-26 01:50:29,323 INFO Connection check task end - -2025-09-26 01:50:30,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:32,324 INFO Connection check task start - -2025-09-26 01:50:32,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:32,324 INFO Out dated connection ,size=0 - -2025-09-26 01:50:32,324 INFO Connection check task end - -2025-09-26 01:50:33,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:35,325 INFO Connection check task start - -2025-09-26 01:50:35,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:35,325 INFO Out dated connection ,size=0 - -2025-09-26 01:50:35,325 INFO Connection check task end - -2025-09-26 01:50:36,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:38,325 INFO Connection check task start - -2025-09-26 01:50:38,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:38,325 INFO Out dated connection ,size=0 - -2025-09-26 01:50:38,325 INFO Connection check task end - -2025-09-26 01:50:39,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:41,326 INFO Connection check task start - -2025-09-26 01:50:41,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:41,326 INFO Out dated connection ,size=0 - -2025-09-26 01:50:41,326 INFO Connection check task end - -2025-09-26 01:50:42,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:44,328 INFO Connection check task start - -2025-09-26 01:50:44,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:44,328 INFO Out dated connection ,size=0 - -2025-09-26 01:50:44,329 INFO Connection check task end - -2025-09-26 01:50:45,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-26 01:50:47,334 INFO Connection check task start - -2025-09-26 01:50:47,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-26 01:50:47,335 INFO Out dated connection ,size=0 - -2025-09-26 01:50:47,335 INFO Connection check task end - -2025-09-26 01:50:48,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - diff --git a/docker/nacos/standalone-logs/plugin-control-connection.log.2025-09-22.0 b/docker/nacos/standalone-logs/plugin-control-connection.log.2025-09-22.0 deleted file mode 100644 index 4a40422..0000000 --- a/docker/nacos/standalone-logs/plugin-control-connection.log.2025-09-22.0 +++ /dev/null @@ -1,14110 +0,0 @@ -2025-09-22 01:17:08,838 INFO Fail to find connection runtime ejector for name nacos,use default - -2025-09-22 01:17:09,840 INFO Connection check task start - -2025-09-22 01:17:09,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:09,841 INFO Out dated connection ,size=0 - -2025-09-22 01:17:09,841 INFO Connection check task end - -2025-09-22 01:17:11,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:12,859 INFO Connection check task start - -2025-09-22 01:17:12,859 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:12,860 INFO Out dated connection ,size=0 - -2025-09-22 01:17:12,860 INFO Connection check task end - -2025-09-22 01:17:14,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:15,861 INFO Connection check task start - -2025-09-22 01:17:15,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:15,861 INFO Out dated connection ,size=0 - -2025-09-22 01:17:15,861 INFO Connection check task end - -2025-09-22 01:17:17,906 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:18,863 INFO Connection check task start - -2025-09-22 01:17:18,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:18,864 INFO Out dated connection ,size=0 - -2025-09-22 01:17:18,864 INFO Connection check task end - -2025-09-22 01:17:20,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:21,864 INFO Connection check task start - -2025-09-22 01:17:21,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:21,865 INFO Out dated connection ,size=0 - -2025-09-22 01:17:21,865 INFO Connection check task end - -2025-09-22 01:17:23,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:24,866 INFO Connection check task start - -2025-09-22 01:17:24,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:24,866 INFO Out dated connection ,size=0 - -2025-09-22 01:17:24,866 INFO Connection check task end - -2025-09-22 01:17:26,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:27,866 INFO Connection check task start - -2025-09-22 01:17:27,867 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:27,867 INFO Out dated connection ,size=0 - -2025-09-22 01:17:27,867 INFO Connection check task end - -2025-09-22 01:17:29,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:30,868 INFO Connection check task start - -2025-09-22 01:17:30,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:30,872 INFO Out dated connection ,size=0 - -2025-09-22 01:17:30,874 INFO Connection check task end - -2025-09-22 01:17:32,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:33,875 INFO Connection check task start - -2025-09-22 01:17:33,875 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:33,876 INFO Out dated connection ,size=0 - -2025-09-22 01:17:33,876 INFO Connection check task end - -2025-09-22 01:17:35,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:36,877 INFO Connection check task start - -2025-09-22 01:17:36,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:36,877 INFO Out dated connection ,size=0 - -2025-09-22 01:17:36,877 INFO Connection check task end - -2025-09-22 01:17:38,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:39,878 INFO Connection check task start - -2025-09-22 01:17:39,878 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:39,879 INFO Out dated connection ,size=0 - -2025-09-22 01:17:39,879 INFO Connection check task end - -2025-09-22 01:17:41,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:42,880 INFO Connection check task start - -2025-09-22 01:17:42,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:42,880 INFO Out dated connection ,size=0 - -2025-09-22 01:17:42,880 INFO Connection check task end - -2025-09-22 01:17:44,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:45,881 INFO Connection check task start - -2025-09-22 01:17:45,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:45,881 INFO Out dated connection ,size=0 - -2025-09-22 01:17:45,881 INFO Connection check task end - -2025-09-22 01:17:47,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:48,882 INFO Connection check task start - -2025-09-22 01:17:48,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:48,883 INFO Out dated connection ,size=0 - -2025-09-22 01:17:48,883 INFO Connection check task end - -2025-09-22 01:17:50,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:51,883 INFO Connection check task start - -2025-09-22 01:17:51,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:51,883 INFO Out dated connection ,size=0 - -2025-09-22 01:17:51,883 INFO Connection check task end - -2025-09-22 01:17:53,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:54,884 INFO Connection check task start - -2025-09-22 01:17:54,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:54,884 INFO Out dated connection ,size=0 - -2025-09-22 01:17:54,884 INFO Connection check task end - -2025-09-22 01:17:56,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:17:57,885 INFO Connection check task start - -2025-09-22 01:17:57,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:17:57,885 INFO Out dated connection ,size=0 - -2025-09-22 01:17:57,885 INFO Connection check task end - -2025-09-22 01:17:59,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:00,886 INFO Connection check task start - -2025-09-22 01:18:00,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:00,886 INFO Out dated connection ,size=0 - -2025-09-22 01:18:00,886 INFO Connection check task end - -2025-09-22 01:18:02,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:03,888 INFO Connection check task start - -2025-09-22 01:18:03,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:03,888 INFO Out dated connection ,size=0 - -2025-09-22 01:18:03,888 INFO Connection check task end - -2025-09-22 01:18:05,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:06,890 INFO Connection check task start - -2025-09-22 01:18:06,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:06,890 INFO Out dated connection ,size=0 - -2025-09-22 01:18:06,890 INFO Connection check task end - -2025-09-22 01:18:08,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:09,891 INFO Connection check task start - -2025-09-22 01:18:09,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:09,892 INFO Out dated connection ,size=0 - -2025-09-22 01:18:09,892 INFO Connection check task end - -2025-09-22 01:18:11,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:12,893 INFO Connection check task start - -2025-09-22 01:18:12,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:12,894 INFO Out dated connection ,size=0 - -2025-09-22 01:18:12,894 INFO Connection check task end - -2025-09-22 01:18:14,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:15,894 INFO Connection check task start - -2025-09-22 01:18:15,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:15,895 INFO Out dated connection ,size=0 - -2025-09-22 01:18:15,895 INFO Connection check task end - -2025-09-22 01:18:17,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:18,895 INFO Connection check task start - -2025-09-22 01:18:18,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:18,895 INFO Out dated connection ,size=0 - -2025-09-22 01:18:18,896 INFO Connection check task end - -2025-09-22 01:18:20,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:21,896 INFO Connection check task start - -2025-09-22 01:18:21,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:21,896 INFO Out dated connection ,size=0 - -2025-09-22 01:18:21,896 INFO Connection check task end - -2025-09-22 01:18:23,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:24,897 INFO Connection check task start - -2025-09-22 01:18:24,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:24,897 INFO Out dated connection ,size=0 - -2025-09-22 01:18:24,897 INFO Connection check task end - -2025-09-22 01:18:26,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:27,897 INFO Connection check task start - -2025-09-22 01:18:27,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:27,897 INFO Out dated connection ,size=0 - -2025-09-22 01:18:27,898 INFO Connection check task end - -2025-09-22 01:18:29,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:30,899 INFO Connection check task start - -2025-09-22 01:18:30,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:30,899 INFO Out dated connection ,size=0 - -2025-09-22 01:18:30,899 INFO Connection check task end - -2025-09-22 01:18:32,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:33,901 INFO Connection check task start - -2025-09-22 01:18:33,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:33,901 INFO Out dated connection ,size=0 - -2025-09-22 01:18:33,901 INFO Connection check task end - -2025-09-22 01:18:35,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:36,902 INFO Connection check task start - -2025-09-22 01:18:36,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:36,902 INFO Out dated connection ,size=0 - -2025-09-22 01:18:36,902 INFO Connection check task end - -2025-09-22 01:18:38,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:39,903 INFO Connection check task start - -2025-09-22 01:18:39,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:39,903 INFO Out dated connection ,size=0 - -2025-09-22 01:18:39,903 INFO Connection check task end - -2025-09-22 01:18:41,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:42,903 INFO Connection check task start - -2025-09-22 01:18:42,904 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:42,904 INFO Out dated connection ,size=0 - -2025-09-22 01:18:42,904 INFO Connection check task end - -2025-09-22 01:18:44,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:45,905 INFO Connection check task start - -2025-09-22 01:18:45,905 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:45,906 INFO Out dated connection ,size=0 - -2025-09-22 01:18:45,906 INFO Connection check task end - -2025-09-22 01:18:47,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:48,906 INFO Connection check task start - -2025-09-22 01:18:48,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:48,906 INFO Out dated connection ,size=0 - -2025-09-22 01:18:48,906 INFO Connection check task end - -2025-09-22 01:18:50,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:51,907 INFO Connection check task start - -2025-09-22 01:18:51,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:51,907 INFO Out dated connection ,size=0 - -2025-09-22 01:18:51,907 INFO Connection check task end - -2025-09-22 01:18:53,945 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:54,908 INFO Connection check task start - -2025-09-22 01:18:54,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:54,908 INFO Out dated connection ,size=0 - -2025-09-22 01:18:54,908 INFO Connection check task end - -2025-09-22 01:18:56,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:18:57,908 INFO Connection check task start - -2025-09-22 01:18:57,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:18:57,909 INFO Out dated connection ,size=0 - -2025-09-22 01:18:57,909 INFO Connection check task end - -2025-09-22 01:18:59,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:00,910 INFO Connection check task start - -2025-09-22 01:19:00,910 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:00,911 INFO Out dated connection ,size=0 - -2025-09-22 01:19:00,911 INFO Connection check task end - -2025-09-22 01:19:02,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:03,911 INFO Connection check task start - -2025-09-22 01:19:03,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:03,911 INFO Out dated connection ,size=0 - -2025-09-22 01:19:03,911 INFO Connection check task end - -2025-09-22 01:19:05,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:06,912 INFO Connection check task start - -2025-09-22 01:19:06,912 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:06,912 INFO Out dated connection ,size=0 - -2025-09-22 01:19:06,912 INFO Connection check task end - -2025-09-22 01:19:08,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:09,913 INFO Connection check task start - -2025-09-22 01:19:09,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:09,913 INFO Out dated connection ,size=0 - -2025-09-22 01:19:09,913 INFO Connection check task end - -2025-09-22 01:19:11,951 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:12,913 INFO Connection check task start - -2025-09-22 01:19:12,914 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:12,914 INFO Out dated connection ,size=0 - -2025-09-22 01:19:12,914 INFO Connection check task end - -2025-09-22 01:19:14,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:15,914 INFO Connection check task start - -2025-09-22 01:19:15,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:15,915 INFO Out dated connection ,size=0 - -2025-09-22 01:19:15,915 INFO Connection check task end - -2025-09-22 01:19:17,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:18,916 INFO Connection check task start - -2025-09-22 01:19:18,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:18,916 INFO Out dated connection ,size=0 - -2025-09-22 01:19:18,916 INFO Connection check task end - -2025-09-22 01:19:20,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:21,917 INFO Connection check task start - -2025-09-22 01:19:21,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:21,917 INFO Out dated connection ,size=0 - -2025-09-22 01:19:21,917 INFO Connection check task end - -2025-09-22 01:19:23,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:24,918 INFO Connection check task start - -2025-09-22 01:19:24,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:24,919 INFO Out dated connection ,size=0 - -2025-09-22 01:19:24,919 INFO Connection check task end - -2025-09-22 01:19:26,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:27,919 INFO Connection check task start - -2025-09-22 01:19:27,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:27,919 INFO Out dated connection ,size=0 - -2025-09-22 01:19:27,920 INFO Connection check task end - -2025-09-22 01:19:29,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:30,920 INFO Connection check task start - -2025-09-22 01:19:30,920 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:30,920 INFO Out dated connection ,size=0 - -2025-09-22 01:19:30,921 INFO Connection check task end - -2025-09-22 01:19:32,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:33,922 INFO Connection check task start - -2025-09-22 01:19:33,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:33,922 INFO Out dated connection ,size=0 - -2025-09-22 01:19:33,922 INFO Connection check task end - -2025-09-22 01:19:35,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:36,923 INFO Connection check task start - -2025-09-22 01:19:36,923 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:36,923 INFO Out dated connection ,size=0 - -2025-09-22 01:19:36,924 INFO Connection check task end - -2025-09-22 01:19:38,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:39,924 INFO Connection check task start - -2025-09-22 01:19:39,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:39,925 INFO Out dated connection ,size=0 - -2025-09-22 01:19:39,925 INFO Connection check task end - -2025-09-22 01:19:41,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:42,925 INFO Connection check task start - -2025-09-22 01:19:42,925 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:42,926 INFO Out dated connection ,size=0 - -2025-09-22 01:19:42,926 INFO Connection check task end - -2025-09-22 01:19:44,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:45,926 INFO Connection check task start - -2025-09-22 01:19:45,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:45,927 INFO Out dated connection ,size=0 - -2025-09-22 01:19:45,927 INFO Connection check task end - -2025-09-22 01:19:47,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:48,927 INFO Connection check task start - -2025-09-22 01:19:48,928 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:48,928 INFO Out dated connection ,size=0 - -2025-09-22 01:19:48,928 INFO Connection check task end - -2025-09-22 01:19:50,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:51,929 INFO Connection check task start - -2025-09-22 01:19:51,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:51,929 INFO Out dated connection ,size=0 - -2025-09-22 01:19:51,929 INFO Connection check task end - -2025-09-22 01:19:53,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:54,930 INFO Connection check task start - -2025-09-22 01:19:54,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:54,930 INFO Out dated connection ,size=0 - -2025-09-22 01:19:54,930 INFO Connection check task end - -2025-09-22 01:19:56,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:19:57,930 INFO Connection check task start - -2025-09-22 01:19:57,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:19:57,931 INFO Out dated connection ,size=0 - -2025-09-22 01:19:57,931 INFO Connection check task end - -2025-09-22 01:19:59,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:00,931 INFO Connection check task start - -2025-09-22 01:20:00,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:00,931 INFO Out dated connection ,size=0 - -2025-09-22 01:20:00,931 INFO Connection check task end - -2025-09-22 01:20:02,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:03,932 INFO Connection check task start - -2025-09-22 01:20:03,932 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:03,932 INFO Out dated connection ,size=0 - -2025-09-22 01:20:03,932 INFO Connection check task end - -2025-09-22 01:20:05,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:06,933 INFO Connection check task start - -2025-09-22 01:20:06,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:06,933 INFO Out dated connection ,size=0 - -2025-09-22 01:20:06,933 INFO Connection check task end - -2025-09-22 01:20:08,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:09,934 INFO Connection check task start - -2025-09-22 01:20:09,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:09,934 INFO Out dated connection ,size=0 - -2025-09-22 01:20:09,934 INFO Connection check task end - -2025-09-22 01:20:11,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:12,935 INFO Connection check task start - -2025-09-22 01:20:12,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:12,935 INFO Out dated connection ,size=0 - -2025-09-22 01:20:12,935 INFO Connection check task end - -2025-09-22 01:20:14,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:15,936 INFO Connection check task start - -2025-09-22 01:20:15,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:15,936 INFO Out dated connection ,size=0 - -2025-09-22 01:20:15,936 INFO Connection check task end - -2025-09-22 01:20:17,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:18,937 INFO Connection check task start - -2025-09-22 01:20:18,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:18,937 INFO Out dated connection ,size=0 - -2025-09-22 01:20:18,937 INFO Connection check task end - -2025-09-22 01:20:20,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:21,938 INFO Connection check task start - -2025-09-22 01:20:21,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:21,938 INFO Out dated connection ,size=0 - -2025-09-22 01:20:21,938 INFO Connection check task end - -2025-09-22 01:20:23,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:24,938 INFO Connection check task start - -2025-09-22 01:20:24,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:24,939 INFO Out dated connection ,size=0 - -2025-09-22 01:20:24,939 INFO Connection check task end - -2025-09-22 01:20:26,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:27,939 INFO Connection check task start - -2025-09-22 01:20:27,939 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:27,939 INFO Out dated connection ,size=0 - -2025-09-22 01:20:27,939 INFO Connection check task end - -2025-09-22 01:20:29,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:30,940 INFO Connection check task start - -2025-09-22 01:20:30,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:30,940 INFO Out dated connection ,size=0 - -2025-09-22 01:20:30,940 INFO Connection check task end - -2025-09-22 01:20:32,981 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:33,941 INFO Connection check task start - -2025-09-22 01:20:33,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:33,941 INFO Out dated connection ,size=0 - -2025-09-22 01:20:33,941 INFO Connection check task end - -2025-09-22 01:20:35,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:36,942 INFO Connection check task start - -2025-09-22 01:20:36,942 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:36,943 INFO Out dated connection ,size=0 - -2025-09-22 01:20:36,943 INFO Connection check task end - -2025-09-22 01:20:38,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:39,943 INFO Connection check task start - -2025-09-22 01:20:39,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:39,943 INFO Out dated connection ,size=0 - -2025-09-22 01:20:39,943 INFO Connection check task end - -2025-09-22 01:20:41,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:42,944 INFO Connection check task start - -2025-09-22 01:20:42,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:42,945 INFO Out dated connection ,size=0 - -2025-09-22 01:20:42,945 INFO Connection check task end - -2025-09-22 01:20:44,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:45,945 INFO Connection check task start - -2025-09-22 01:20:45,945 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:45,945 INFO Out dated connection ,size=0 - -2025-09-22 01:20:45,946 INFO Connection check task end - -2025-09-22 01:20:47,986 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:48,946 INFO Connection check task start - -2025-09-22 01:20:48,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:48,946 INFO Out dated connection ,size=0 - -2025-09-22 01:20:48,946 INFO Connection check task end - -2025-09-22 01:20:50,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:51,947 INFO Connection check task start - -2025-09-22 01:20:51,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:51,947 INFO Out dated connection ,size=0 - -2025-09-22 01:20:51,947 INFO Connection check task end - -2025-09-22 01:20:53,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:54,948 INFO Connection check task start - -2025-09-22 01:20:54,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:54,948 INFO Out dated connection ,size=0 - -2025-09-22 01:20:54,948 INFO Connection check task end - -2025-09-22 01:20:56,989 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:20:57,948 INFO Connection check task start - -2025-09-22 01:20:57,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:20:57,949 INFO Out dated connection ,size=0 - -2025-09-22 01:20:57,949 INFO Connection check task end - -2025-09-22 01:20:59,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:00,949 INFO Connection check task start - -2025-09-22 01:21:00,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:00,950 INFO Out dated connection ,size=0 - -2025-09-22 01:21:00,950 INFO Connection check task end - -2025-09-22 01:21:02,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:03,951 INFO Connection check task start - -2025-09-22 01:21:03,951 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:03,951 INFO Out dated connection ,size=0 - -2025-09-22 01:21:03,952 INFO Connection check task end - -2025-09-22 01:21:05,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:06,952 INFO Connection check task start - -2025-09-22 01:21:06,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:06,953 INFO Out dated connection ,size=0 - -2025-09-22 01:21:06,953 INFO Connection check task end - -2025-09-22 01:21:08,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:09,953 INFO Connection check task start - -2025-09-22 01:21:09,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:09,954 INFO Out dated connection ,size=0 - -2025-09-22 01:21:09,954 INFO Connection check task end - -2025-09-22 01:21:11,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:12,955 INFO Connection check task start - -2025-09-22 01:21:12,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:12,955 INFO Out dated connection ,size=0 - -2025-09-22 01:21:12,955 INFO Connection check task end - -2025-09-22 01:21:14,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:15,957 INFO Connection check task start - -2025-09-22 01:21:15,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:15,957 INFO Out dated connection ,size=0 - -2025-09-22 01:21:15,957 INFO Connection check task end - -2025-09-22 01:21:17,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:18,957 INFO Connection check task start - -2025-09-22 01:21:18,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:18,957 INFO Out dated connection ,size=0 - -2025-09-22 01:21:18,957 INFO Connection check task end - -2025-09-22 01:21:20,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:21,957 INFO Connection check task start - -2025-09-22 01:21:21,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:21,958 INFO Out dated connection ,size=0 - -2025-09-22 01:21:21,958 INFO Connection check task end - -2025-09-22 01:21:23,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:24,958 INFO Connection check task start - -2025-09-22 01:21:24,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:24,959 INFO Out dated connection ,size=0 - -2025-09-22 01:21:24,959 INFO Connection check task end - -2025-09-22 01:21:26,999 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:27,959 INFO Connection check task start - -2025-09-22 01:21:27,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:27,959 INFO Out dated connection ,size=0 - -2025-09-22 01:21:27,959 INFO Connection check task end - -2025-09-22 01:21:30,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:30,960 INFO Connection check task start - -2025-09-22 01:21:30,960 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:30,960 INFO Out dated connection ,size=0 - -2025-09-22 01:21:30,960 INFO Connection check task end - -2025-09-22 01:21:33,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:33,961 INFO Connection check task start - -2025-09-22 01:21:33,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:33,961 INFO Out dated connection ,size=0 - -2025-09-22 01:21:33,961 INFO Connection check task end - -2025-09-22 01:21:36,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:36,962 INFO Connection check task start - -2025-09-22 01:21:36,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:36,962 INFO Out dated connection ,size=0 - -2025-09-22 01:21:36,962 INFO Connection check task end - -2025-09-22 01:21:39,004 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:39,963 INFO Connection check task start - -2025-09-22 01:21:39,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:39,964 INFO Out dated connection ,size=0 - -2025-09-22 01:21:39,964 INFO Connection check task end - -2025-09-22 01:21:42,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:42,964 INFO Connection check task start - -2025-09-22 01:21:42,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:42,965 INFO Out dated connection ,size=0 - -2025-09-22 01:21:42,965 INFO Connection check task end - -2025-09-22 01:21:45,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:45,965 INFO Connection check task start - -2025-09-22 01:21:45,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:45,965 INFO Out dated connection ,size=0 - -2025-09-22 01:21:45,965 INFO Connection check task end - -2025-09-22 01:21:48,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:48,966 INFO Connection check task start - -2025-09-22 01:21:48,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:48,966 INFO Out dated connection ,size=0 - -2025-09-22 01:21:48,967 INFO Connection check task end - -2025-09-22 01:21:51,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:51,967 INFO Connection check task start - -2025-09-22 01:21:51,967 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:51,967 INFO Out dated connection ,size=0 - -2025-09-22 01:21:51,967 INFO Connection check task end - -2025-09-22 01:21:54,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:54,968 INFO Connection check task start - -2025-09-22 01:21:54,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:54,968 INFO Out dated connection ,size=0 - -2025-09-22 01:21:54,968 INFO Connection check task end - -2025-09-22 01:21:57,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:21:57,969 INFO Connection check task start - -2025-09-22 01:21:57,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:21:57,969 INFO Out dated connection ,size=0 - -2025-09-22 01:21:57,969 INFO Connection check task end - -2025-09-22 01:22:00,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:00,970 INFO Connection check task start - -2025-09-22 01:22:00,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:00,970 INFO Out dated connection ,size=0 - -2025-09-22 01:22:00,970 INFO Connection check task end - -2025-09-22 01:22:03,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:03,971 INFO Connection check task start - -2025-09-22 01:22:03,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:03,972 INFO Out dated connection ,size=0 - -2025-09-22 01:22:03,972 INFO Connection check task end - -2025-09-22 01:22:06,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:06,973 INFO Connection check task start - -2025-09-22 01:22:06,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:06,973 INFO Out dated connection ,size=0 - -2025-09-22 01:22:06,973 INFO Connection check task end - -2025-09-22 01:22:09,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:09,978 INFO Connection check task start - -2025-09-22 01:22:09,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:09,983 INFO Out dated connection ,size=0 - -2025-09-22 01:22:09,983 INFO Connection check task end - -2025-09-22 01:22:12,015 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:12,985 INFO Connection check task start - -2025-09-22 01:22:12,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:12,985 INFO Out dated connection ,size=0 - -2025-09-22 01:22:12,985 INFO Connection check task end - -2025-09-22 01:22:15,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:15,985 INFO Connection check task start - -2025-09-22 01:22:15,986 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:15,986 INFO Out dated connection ,size=0 - -2025-09-22 01:22:15,986 INFO Connection check task end - -2025-09-22 01:22:18,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:18,987 INFO Connection check task start - -2025-09-22 01:22:18,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:18,987 INFO Out dated connection ,size=0 - -2025-09-22 01:22:18,987 INFO Connection check task end - -2025-09-22 01:22:21,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:21,988 INFO Connection check task start - -2025-09-22 01:22:21,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:21,988 INFO Out dated connection ,size=0 - -2025-09-22 01:22:21,988 INFO Connection check task end - -2025-09-22 01:22:24,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:24,988 INFO Connection check task start - -2025-09-22 01:22:24,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:24,988 INFO Out dated connection ,size=0 - -2025-09-22 01:22:24,989 INFO Connection check task end - -2025-09-22 01:22:27,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:27,989 INFO Connection check task start - -2025-09-22 01:22:27,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:27,989 INFO Out dated connection ,size=0 - -2025-09-22 01:22:27,989 INFO Connection check task end - -2025-09-22 01:22:30,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:30,990 INFO Connection check task start - -2025-09-22 01:22:30,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:30,991 INFO Out dated connection ,size=0 - -2025-09-22 01:22:30,991 INFO Connection check task end - -2025-09-22 01:22:33,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:33,991 INFO Connection check task start - -2025-09-22 01:22:33,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:33,992 INFO Out dated connection ,size=0 - -2025-09-22 01:22:33,992 INFO Connection check task end - -2025-09-22 01:22:36,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:36,993 INFO Connection check task start - -2025-09-22 01:22:36,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:36,993 INFO Out dated connection ,size=0 - -2025-09-22 01:22:36,993 INFO Connection check task end - -2025-09-22 01:22:39,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:39,993 INFO Connection check task start - -2025-09-22 01:22:39,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:39,993 INFO Out dated connection ,size=0 - -2025-09-22 01:22:39,993 INFO Connection check task end - -2025-09-22 01:22:42,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:42,994 INFO Connection check task start - -2025-09-22 01:22:42,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:42,995 INFO Out dated connection ,size=0 - -2025-09-22 01:22:42,995 INFO Connection check task end - -2025-09-22 01:22:45,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:45,995 INFO Connection check task start - -2025-09-22 01:22:45,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:45,995 INFO Out dated connection ,size=0 - -2025-09-22 01:22:45,995 INFO Connection check task end - -2025-09-22 01:22:48,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:48,996 INFO Connection check task start - -2025-09-22 01:22:48,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:48,997 INFO Out dated connection ,size=0 - -2025-09-22 01:22:48,997 INFO Connection check task end - -2025-09-22 01:22:51,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:51,998 INFO Connection check task start - -2025-09-22 01:22:51,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:51,998 INFO Out dated connection ,size=0 - -2025-09-22 01:22:51,998 INFO Connection check task end - -2025-09-22 01:22:54,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:54,998 INFO Connection check task start - -2025-09-22 01:22:54,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:54,999 INFO Out dated connection ,size=0 - -2025-09-22 01:22:54,999 INFO Connection check task end - -2025-09-22 01:22:57,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:22:58,000 INFO Connection check task start - -2025-09-22 01:22:58,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:22:58,001 INFO Out dated connection ,size=0 - -2025-09-22 01:22:58,001 INFO Connection check task end - -2025-09-22 01:23:00,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:01,001 INFO Connection check task start - -2025-09-22 01:23:01,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:01,001 INFO Out dated connection ,size=0 - -2025-09-22 01:23:01,001 INFO Connection check task end - -2025-09-22 01:23:03,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:04,002 INFO Connection check task start - -2025-09-22 01:23:04,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:04,003 INFO Out dated connection ,size=0 - -2025-09-22 01:23:04,003 INFO Connection check task end - -2025-09-22 01:23:06,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:07,004 INFO Connection check task start - -2025-09-22 01:23:07,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:07,004 INFO Out dated connection ,size=0 - -2025-09-22 01:23:07,004 INFO Connection check task end - -2025-09-22 01:23:09,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:10,005 INFO Connection check task start - -2025-09-22 01:23:10,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:10,005 INFO Out dated connection ,size=0 - -2025-09-22 01:23:10,005 INFO Connection check task end - -2025-09-22 01:23:12,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:13,006 INFO Connection check task start - -2025-09-22 01:23:13,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:13,006 INFO Out dated connection ,size=0 - -2025-09-22 01:23:13,006 INFO Connection check task end - -2025-09-22 01:23:15,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:16,007 INFO Connection check task start - -2025-09-22 01:23:16,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:16,007 INFO Out dated connection ,size=0 - -2025-09-22 01:23:16,007 INFO Connection check task end - -2025-09-22 01:23:18,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:19,008 INFO Connection check task start - -2025-09-22 01:23:19,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:19,008 INFO Out dated connection ,size=0 - -2025-09-22 01:23:19,008 INFO Connection check task end - -2025-09-22 01:23:21,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:22,009 INFO Connection check task start - -2025-09-22 01:23:22,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:22,010 INFO Out dated connection ,size=0 - -2025-09-22 01:23:22,010 INFO Connection check task end - -2025-09-22 01:23:24,051 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:25,010 INFO Connection check task start - -2025-09-22 01:23:25,010 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:25,010 INFO Out dated connection ,size=0 - -2025-09-22 01:23:25,010 INFO Connection check task end - -2025-09-22 01:23:27,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:28,012 INFO Connection check task start - -2025-09-22 01:23:28,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:28,012 INFO Out dated connection ,size=0 - -2025-09-22 01:23:28,012 INFO Connection check task end - -2025-09-22 01:23:30,052 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:31,013 INFO Connection check task start - -2025-09-22 01:23:31,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:31,013 INFO Out dated connection ,size=0 - -2025-09-22 01:23:31,013 INFO Connection check task end - -2025-09-22 01:23:33,054 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:34,014 INFO Connection check task start - -2025-09-22 01:23:34,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:34,014 INFO Out dated connection ,size=0 - -2025-09-22 01:23:34,014 INFO Connection check task end - -2025-09-22 01:23:36,055 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:37,015 INFO Connection check task start - -2025-09-22 01:23:37,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:37,015 INFO Out dated connection ,size=0 - -2025-09-22 01:23:37,015 INFO Connection check task end - -2025-09-22 01:23:39,057 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:40,016 INFO Connection check task start - -2025-09-22 01:23:40,016 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:40,016 INFO Out dated connection ,size=0 - -2025-09-22 01:23:40,016 INFO Connection check task end - -2025-09-22 01:23:42,058 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:43,017 INFO Connection check task start - -2025-09-22 01:23:43,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:43,017 INFO Out dated connection ,size=0 - -2025-09-22 01:23:43,017 INFO Connection check task end - -2025-09-22 01:23:45,059 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:46,018 INFO Connection check task start - -2025-09-22 01:23:46,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:46,018 INFO Out dated connection ,size=0 - -2025-09-22 01:23:46,018 INFO Connection check task end - -2025-09-22 01:23:48,060 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:49,019 INFO Connection check task start - -2025-09-22 01:23:49,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:49,019 INFO Out dated connection ,size=0 - -2025-09-22 01:23:49,019 INFO Connection check task end - -2025-09-22 01:23:51,061 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:52,020 INFO Connection check task start - -2025-09-22 01:23:52,020 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:52,020 INFO Out dated connection ,size=0 - -2025-09-22 01:23:52,020 INFO Connection check task end - -2025-09-22 01:23:54,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:55,021 INFO Connection check task start - -2025-09-22 01:23:55,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:55,021 INFO Out dated connection ,size=0 - -2025-09-22 01:23:55,021 INFO Connection check task end - -2025-09-22 01:23:57,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:23:58,022 INFO Connection check task start - -2025-09-22 01:23:58,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:23:58,022 INFO Out dated connection ,size=0 - -2025-09-22 01:23:58,022 INFO Connection check task end - -2025-09-22 01:24:00,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:01,023 INFO Connection check task start - -2025-09-22 01:24:01,023 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:01,023 INFO Out dated connection ,size=0 - -2025-09-22 01:24:01,023 INFO Connection check task end - -2025-09-22 01:24:03,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:04,024 INFO Connection check task start - -2025-09-22 01:24:04,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:04,025 INFO Out dated connection ,size=0 - -2025-09-22 01:24:04,025 INFO Connection check task end - -2025-09-22 01:24:06,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:07,025 INFO Connection check task start - -2025-09-22 01:24:07,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:07,026 INFO Out dated connection ,size=0 - -2025-09-22 01:24:07,026 INFO Connection check task end - -2025-09-22 01:24:09,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:10,026 INFO Connection check task start - -2025-09-22 01:24:10,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:10,026 INFO Out dated connection ,size=0 - -2025-09-22 01:24:10,026 INFO Connection check task end - -2025-09-22 01:24:12,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:13,027 INFO Connection check task start - -2025-09-22 01:24:13,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:13,027 INFO Out dated connection ,size=0 - -2025-09-22 01:24:13,027 INFO Connection check task end - -2025-09-22 01:24:15,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:16,027 INFO Connection check task start - -2025-09-22 01:24:16,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:16,028 INFO Out dated connection ,size=0 - -2025-09-22 01:24:16,028 INFO Connection check task end - -2025-09-22 01:24:18,069 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:19,028 INFO Connection check task start - -2025-09-22 01:24:19,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:19,029 INFO Out dated connection ,size=0 - -2025-09-22 01:24:19,029 INFO Connection check task end - -2025-09-22 01:24:21,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:22,029 INFO Connection check task start - -2025-09-22 01:24:22,029 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:22,029 INFO Out dated connection ,size=0 - -2025-09-22 01:24:22,029 INFO Connection check task end - -2025-09-22 01:24:24,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:25,029 INFO Connection check task start - -2025-09-22 01:24:25,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:25,032 INFO Out dated connection ,size=0 - -2025-09-22 01:24:25,032 INFO Connection check task end - -2025-09-22 01:24:27,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:28,032 INFO Connection check task start - -2025-09-22 01:24:28,032 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:28,032 INFO Out dated connection ,size=0 - -2025-09-22 01:24:28,032 INFO Connection check task end - -2025-09-22 01:24:30,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:31,033 INFO Connection check task start - -2025-09-22 01:24:31,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:31,033 INFO Out dated connection ,size=0 - -2025-09-22 01:24:31,034 INFO Connection check task end - -2025-09-22 01:24:33,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:34,034 INFO Connection check task start - -2025-09-22 01:24:34,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:34,034 INFO Out dated connection ,size=0 - -2025-09-22 01:24:34,034 INFO Connection check task end - -2025-09-22 01:24:36,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:37,034 INFO Connection check task start - -2025-09-22 01:24:37,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:37,035 INFO Out dated connection ,size=0 - -2025-09-22 01:24:37,035 INFO Connection check task end - -2025-09-22 01:24:39,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:40,036 INFO Connection check task start - -2025-09-22 01:24:40,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:40,036 INFO Out dated connection ,size=0 - -2025-09-22 01:24:40,036 INFO Connection check task end - -2025-09-22 01:24:42,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:43,036 INFO Connection check task start - -2025-09-22 01:24:43,037 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:43,037 INFO Out dated connection ,size=0 - -2025-09-22 01:24:43,037 INFO Connection check task end - -2025-09-22 01:24:45,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:46,038 INFO Connection check task start - -2025-09-22 01:24:46,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:46,038 INFO Out dated connection ,size=0 - -2025-09-22 01:24:46,038 INFO Connection check task end - -2025-09-22 01:24:48,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:49,039 INFO Connection check task start - -2025-09-22 01:24:49,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:49,039 INFO Out dated connection ,size=0 - -2025-09-22 01:24:49,039 INFO Connection check task end - -2025-09-22 01:24:51,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:52,040 INFO Connection check task start - -2025-09-22 01:24:52,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:52,040 INFO Out dated connection ,size=0 - -2025-09-22 01:24:52,040 INFO Connection check task end - -2025-09-22 01:24:54,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:55,041 INFO Connection check task start - -2025-09-22 01:24:55,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:55,042 INFO Out dated connection ,size=0 - -2025-09-22 01:24:55,042 INFO Connection check task end - -2025-09-22 01:24:57,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:24:58,042 INFO Connection check task start - -2025-09-22 01:24:58,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:24:58,043 INFO Out dated connection ,size=0 - -2025-09-22 01:24:58,043 INFO Connection check task end - -2025-09-22 01:25:00,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:01,043 INFO Connection check task start - -2025-09-22 01:25:01,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:01,044 INFO Out dated connection ,size=0 - -2025-09-22 01:25:01,044 INFO Connection check task end - -2025-09-22 01:25:03,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:04,044 INFO Connection check task start - -2025-09-22 01:25:04,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:04,045 INFO Out dated connection ,size=0 - -2025-09-22 01:25:04,045 INFO Connection check task end - -2025-09-22 01:25:06,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:07,046 INFO Connection check task start - -2025-09-22 01:25:07,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:07,046 INFO Out dated connection ,size=0 - -2025-09-22 01:25:07,046 INFO Connection check task end - -2025-09-22 01:25:09,086 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:10,047 INFO Connection check task start - -2025-09-22 01:25:10,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:10,047 INFO Out dated connection ,size=0 - -2025-09-22 01:25:10,047 INFO Connection check task end - -2025-09-22 01:25:12,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:13,049 INFO Connection check task start - -2025-09-22 01:25:13,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:13,049 INFO Out dated connection ,size=0 - -2025-09-22 01:25:13,049 INFO Connection check task end - -2025-09-22 01:25:15,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:16,049 INFO Connection check task start - -2025-09-22 01:25:16,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:16,050 INFO Out dated connection ,size=0 - -2025-09-22 01:25:16,050 INFO Connection check task end - -2025-09-22 01:25:18,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:19,050 INFO Connection check task start - -2025-09-22 01:25:19,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:19,051 INFO Out dated connection ,size=0 - -2025-09-22 01:25:19,051 INFO Connection check task end - -2025-09-22 01:25:21,089 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:22,052 INFO Connection check task start - -2025-09-22 01:25:22,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:22,052 INFO Out dated connection ,size=0 - -2025-09-22 01:25:22,052 INFO Connection check task end - -2025-09-22 01:25:24,091 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:25,053 INFO Connection check task start - -2025-09-22 01:25:25,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:25,053 INFO Out dated connection ,size=0 - -2025-09-22 01:25:25,053 INFO Connection check task end - -2025-09-22 01:25:27,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:28,054 INFO Connection check task start - -2025-09-22 01:25:28,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:28,054 INFO Out dated connection ,size=0 - -2025-09-22 01:25:28,055 INFO Connection check task end - -2025-09-22 01:25:30,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:31,055 INFO Connection check task start - -2025-09-22 01:25:31,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:31,055 INFO Out dated connection ,size=0 - -2025-09-22 01:25:31,055 INFO Connection check task end - -2025-09-22 01:25:33,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:34,056 INFO Connection check task start - -2025-09-22 01:25:34,056 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:34,056 INFO Out dated connection ,size=0 - -2025-09-22 01:25:34,056 INFO Connection check task end - -2025-09-22 01:25:36,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:37,057 INFO Connection check task start - -2025-09-22 01:25:37,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:37,058 INFO Out dated connection ,size=0 - -2025-09-22 01:25:37,058 INFO Connection check task end - -2025-09-22 01:25:39,096 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:40,059 INFO Connection check task start - -2025-09-22 01:25:40,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:40,059 INFO Out dated connection ,size=0 - -2025-09-22 01:25:40,059 INFO Connection check task end - -2025-09-22 01:25:42,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:43,059 INFO Connection check task start - -2025-09-22 01:25:43,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:43,060 INFO Out dated connection ,size=0 - -2025-09-22 01:25:43,060 INFO Connection check task end - -2025-09-22 01:25:45,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:46,060 INFO Connection check task start - -2025-09-22 01:25:46,060 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:46,060 INFO Out dated connection ,size=0 - -2025-09-22 01:25:46,061 INFO Connection check task end - -2025-09-22 01:25:48,098 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:49,061 INFO Connection check task start - -2025-09-22 01:25:49,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:49,061 INFO Out dated connection ,size=0 - -2025-09-22 01:25:49,061 INFO Connection check task end - -2025-09-22 01:25:51,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:52,062 INFO Connection check task start - -2025-09-22 01:25:52,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:52,062 INFO Out dated connection ,size=0 - -2025-09-22 01:25:52,062 INFO Connection check task end - -2025-09-22 01:25:54,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:55,063 INFO Connection check task start - -2025-09-22 01:25:55,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:55,063 INFO Out dated connection ,size=0 - -2025-09-22 01:25:55,063 INFO Connection check task end - -2025-09-22 01:25:57,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:25:58,063 INFO Connection check task start - -2025-09-22 01:25:58,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:25:58,064 INFO Out dated connection ,size=0 - -2025-09-22 01:25:58,064 INFO Connection check task end - -2025-09-22 01:26:00,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:01,064 INFO Connection check task start - -2025-09-22 01:26:01,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:01,065 INFO Out dated connection ,size=0 - -2025-09-22 01:26:01,065 INFO Connection check task end - -2025-09-22 01:26:03,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:04,065 INFO Connection check task start - -2025-09-22 01:26:04,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:04,065 INFO Out dated connection ,size=0 - -2025-09-22 01:26:04,065 INFO Connection check task end - -2025-09-22 01:26:06,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:07,066 INFO Connection check task start - -2025-09-22 01:26:07,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:07,066 INFO Out dated connection ,size=0 - -2025-09-22 01:26:07,066 INFO Connection check task end - -2025-09-22 01:26:09,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:10,066 INFO Connection check task start - -2025-09-22 01:26:10,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:10,066 INFO Out dated connection ,size=0 - -2025-09-22 01:26:10,067 INFO Connection check task end - -2025-09-22 01:26:12,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:13,067 INFO Connection check task start - -2025-09-22 01:26:13,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:13,067 INFO Out dated connection ,size=0 - -2025-09-22 01:26:13,068 INFO Connection check task end - -2025-09-22 01:26:15,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:16,068 INFO Connection check task start - -2025-09-22 01:26:16,068 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:16,068 INFO Out dated connection ,size=0 - -2025-09-22 01:26:16,068 INFO Connection check task end - -2025-09-22 01:26:18,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:19,069 INFO Connection check task start - -2025-09-22 01:26:19,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:19,069 INFO Out dated connection ,size=0 - -2025-09-22 01:26:19,069 INFO Connection check task end - -2025-09-22 01:26:21,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:22,070 INFO Connection check task start - -2025-09-22 01:26:22,070 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:22,070 INFO Out dated connection ,size=0 - -2025-09-22 01:26:22,070 INFO Connection check task end - -2025-09-22 01:26:24,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:25,071 INFO Connection check task start - -2025-09-22 01:26:25,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:25,071 INFO Out dated connection ,size=0 - -2025-09-22 01:26:25,071 INFO Connection check task end - -2025-09-22 01:26:27,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:28,072 INFO Connection check task start - -2025-09-22 01:26:28,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:28,072 INFO Out dated connection ,size=0 - -2025-09-22 01:26:28,072 INFO Connection check task end - -2025-09-22 01:26:30,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:31,072 INFO Connection check task start - -2025-09-22 01:26:31,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:31,073 INFO Out dated connection ,size=0 - -2025-09-22 01:26:31,073 INFO Connection check task end - -2025-09-22 01:26:33,113 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:34,074 INFO Connection check task start - -2025-09-22 01:26:34,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:34,074 INFO Out dated connection ,size=0 - -2025-09-22 01:26:34,074 INFO Connection check task end - -2025-09-22 01:26:36,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:37,075 INFO Connection check task start - -2025-09-22 01:26:37,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:37,075 INFO Out dated connection ,size=0 - -2025-09-22 01:26:37,075 INFO Connection check task end - -2025-09-22 01:26:39,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:40,077 INFO Connection check task start - -2025-09-22 01:26:40,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:40,078 INFO Out dated connection ,size=0 - -2025-09-22 01:26:40,078 INFO Connection check task end - -2025-09-22 01:26:42,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:43,078 INFO Connection check task start - -2025-09-22 01:26:43,078 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:43,078 INFO Out dated connection ,size=0 - -2025-09-22 01:26:43,079 INFO Connection check task end - -2025-09-22 01:26:45,118 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:46,079 INFO Connection check task start - -2025-09-22 01:26:46,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:46,080 INFO Out dated connection ,size=0 - -2025-09-22 01:26:46,080 INFO Connection check task end - -2025-09-22 01:26:48,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:49,081 INFO Connection check task start - -2025-09-22 01:26:49,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:49,081 INFO Out dated connection ,size=0 - -2025-09-22 01:26:49,081 INFO Connection check task end - -2025-09-22 01:26:51,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:52,082 INFO Connection check task start - -2025-09-22 01:26:52,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:52,082 INFO Out dated connection ,size=0 - -2025-09-22 01:26:52,082 INFO Connection check task end - -2025-09-22 01:26:54,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:55,082 INFO Connection check task start - -2025-09-22 01:26:55,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:55,082 INFO Out dated connection ,size=0 - -2025-09-22 01:26:55,083 INFO Connection check task end - -2025-09-22 01:26:57,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:26:58,083 INFO Connection check task start - -2025-09-22 01:26:58,083 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:26:58,083 INFO Out dated connection ,size=0 - -2025-09-22 01:26:58,083 INFO Connection check task end - -2025-09-22 01:27:00,123 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:01,084 INFO Connection check task start - -2025-09-22 01:27:01,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:01,084 INFO Out dated connection ,size=0 - -2025-09-22 01:27:01,084 INFO Connection check task end - -2025-09-22 01:27:03,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:04,084 INFO Connection check task start - -2025-09-22 01:27:04,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:04,085 INFO Out dated connection ,size=0 - -2025-09-22 01:27:04,085 INFO Connection check task end - -2025-09-22 01:27:06,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:07,086 INFO Connection check task start - -2025-09-22 01:27:07,086 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:07,086 INFO Out dated connection ,size=0 - -2025-09-22 01:27:07,086 INFO Connection check task end - -2025-09-22 01:27:09,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:10,087 INFO Connection check task start - -2025-09-22 01:27:10,088 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:10,088 INFO Out dated connection ,size=0 - -2025-09-22 01:27:10,088 INFO Connection check task end - -2025-09-22 01:27:12,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:13,088 INFO Connection check task start - -2025-09-22 01:27:13,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:13,089 INFO Out dated connection ,size=0 - -2025-09-22 01:27:13,089 INFO Connection check task end - -2025-09-22 01:27:15,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:16,090 INFO Connection check task start - -2025-09-22 01:27:16,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:16,090 INFO Out dated connection ,size=0 - -2025-09-22 01:27:16,090 INFO Connection check task end - -2025-09-22 01:27:18,129 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:19,090 INFO Connection check task start - -2025-09-22 01:27:19,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:19,091 INFO Out dated connection ,size=0 - -2025-09-22 01:27:19,091 INFO Connection check task end - -2025-09-22 01:27:21,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:22,091 INFO Connection check task start - -2025-09-22 01:27:22,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:22,091 INFO Out dated connection ,size=0 - -2025-09-22 01:27:22,091 INFO Connection check task end - -2025-09-22 01:27:24,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:25,093 INFO Connection check task start - -2025-09-22 01:27:25,093 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:25,093 INFO Out dated connection ,size=0 - -2025-09-22 01:27:25,093 INFO Connection check task end - -2025-09-22 01:27:27,133 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:28,094 INFO Connection check task start - -2025-09-22 01:27:28,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:28,094 INFO Out dated connection ,size=0 - -2025-09-22 01:27:28,094 INFO Connection check task end - -2025-09-22 01:27:30,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:31,095 INFO Connection check task start - -2025-09-22 01:27:31,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:31,095 INFO Out dated connection ,size=0 - -2025-09-22 01:27:31,095 INFO Connection check task end - -2025-09-22 01:27:33,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:34,096 INFO Connection check task start - -2025-09-22 01:27:34,096 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:34,097 INFO Out dated connection ,size=0 - -2025-09-22 01:27:34,097 INFO Connection check task end - -2025-09-22 01:27:36,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:37,097 INFO Connection check task start - -2025-09-22 01:27:37,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:37,097 INFO Out dated connection ,size=0 - -2025-09-22 01:27:37,098 INFO Connection check task end - -2025-09-22 01:27:39,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:40,098 INFO Connection check task start - -2025-09-22 01:27:40,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:40,099 INFO Out dated connection ,size=0 - -2025-09-22 01:27:40,099 INFO Connection check task end - -2025-09-22 01:27:42,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:43,100 INFO Connection check task start - -2025-09-22 01:27:43,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:43,100 INFO Out dated connection ,size=0 - -2025-09-22 01:27:43,100 INFO Connection check task end - -2025-09-22 01:27:45,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:46,101 INFO Connection check task start - -2025-09-22 01:27:46,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:46,101 INFO Out dated connection ,size=0 - -2025-09-22 01:27:46,101 INFO Connection check task end - -2025-09-22 01:27:48,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:49,102 INFO Connection check task start - -2025-09-22 01:27:49,102 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:49,102 INFO Out dated connection ,size=0 - -2025-09-22 01:27:49,102 INFO Connection check task end - -2025-09-22 01:27:51,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:52,103 INFO Connection check task start - -2025-09-22 01:27:52,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:52,103 INFO Out dated connection ,size=0 - -2025-09-22 01:27:52,103 INFO Connection check task end - -2025-09-22 01:27:54,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:55,103 INFO Connection check task start - -2025-09-22 01:27:55,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:55,103 INFO Out dated connection ,size=0 - -2025-09-22 01:27:55,103 INFO Connection check task end - -2025-09-22 01:27:57,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:27:58,104 INFO Connection check task start - -2025-09-22 01:27:58,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:27:58,104 INFO Out dated connection ,size=0 - -2025-09-22 01:27:58,104 INFO Connection check task end - -2025-09-22 01:28:00,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:01,105 INFO Connection check task start - -2025-09-22 01:28:01,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:01,105 INFO Out dated connection ,size=0 - -2025-09-22 01:28:01,105 INFO Connection check task end - -2025-09-22 01:28:03,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:04,105 INFO Connection check task start - -2025-09-22 01:28:04,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:04,105 INFO Out dated connection ,size=0 - -2025-09-22 01:28:04,105 INFO Connection check task end - -2025-09-22 01:28:06,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:07,107 INFO Connection check task start - -2025-09-22 01:28:07,107 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:07,107 INFO Out dated connection ,size=0 - -2025-09-22 01:28:07,107 INFO Connection check task end - -2025-09-22 01:28:09,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:10,108 INFO Connection check task start - -2025-09-22 01:28:10,108 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:10,108 INFO Out dated connection ,size=0 - -2025-09-22 01:28:10,108 INFO Connection check task end - -2025-09-22 01:28:12,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:13,109 INFO Connection check task start - -2025-09-22 01:28:13,109 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:13,109 INFO Out dated connection ,size=0 - -2025-09-22 01:28:13,110 INFO Connection check task end - -2025-09-22 01:28:15,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:16,110 INFO Connection check task start - -2025-09-22 01:28:16,110 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:16,111 INFO Out dated connection ,size=0 - -2025-09-22 01:28:16,111 INFO Connection check task end - -2025-09-22 01:28:18,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:19,112 INFO Connection check task start - -2025-09-22 01:28:19,112 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:19,112 INFO Out dated connection ,size=0 - -2025-09-22 01:28:19,113 INFO Connection check task end - -2025-09-22 01:28:21,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:22,113 INFO Connection check task start - -2025-09-22 01:28:22,113 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:22,113 INFO Out dated connection ,size=0 - -2025-09-22 01:28:22,113 INFO Connection check task end - -2025-09-22 01:28:24,153 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:25,114 INFO Connection check task start - -2025-09-22 01:28:25,114 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:25,114 INFO Out dated connection ,size=0 - -2025-09-22 01:28:25,114 INFO Connection check task end - -2025-09-22 01:28:27,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:28,115 INFO Connection check task start - -2025-09-22 01:28:28,115 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:28,115 INFO Out dated connection ,size=0 - -2025-09-22 01:28:28,115 INFO Connection check task end - -2025-09-22 01:28:30,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:31,116 INFO Connection check task start - -2025-09-22 01:28:31,117 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:31,117 INFO Out dated connection ,size=0 - -2025-09-22 01:28:31,117 INFO Connection check task end - -2025-09-22 01:28:33,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:34,117 INFO Connection check task start - -2025-09-22 01:28:34,118 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:34,118 INFO Out dated connection ,size=0 - -2025-09-22 01:28:34,118 INFO Connection check task end - -2025-09-22 01:28:36,158 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:37,118 INFO Connection check task start - -2025-09-22 01:28:37,119 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:37,119 INFO Out dated connection ,size=0 - -2025-09-22 01:28:37,120 INFO Connection check task end - -2025-09-22 01:28:39,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:40,120 INFO Connection check task start - -2025-09-22 01:28:40,120 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:40,120 INFO Out dated connection ,size=0 - -2025-09-22 01:28:40,120 INFO Connection check task end - -2025-09-22 01:28:42,160 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:43,121 INFO Connection check task start - -2025-09-22 01:28:43,121 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:43,121 INFO Out dated connection ,size=0 - -2025-09-22 01:28:43,121 INFO Connection check task end - -2025-09-22 01:28:45,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:46,122 INFO Connection check task start - -2025-09-22 01:28:46,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:46,122 INFO Out dated connection ,size=0 - -2025-09-22 01:28:46,122 INFO Connection check task end - -2025-09-22 01:28:48,161 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:49,122 INFO Connection check task start - -2025-09-22 01:28:49,122 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:49,122 INFO Out dated connection ,size=0 - -2025-09-22 01:28:49,123 INFO Connection check task end - -2025-09-22 01:28:51,162 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:52,123 INFO Connection check task start - -2025-09-22 01:28:52,123 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:52,123 INFO Out dated connection ,size=0 - -2025-09-22 01:28:52,123 INFO Connection check task end - -2025-09-22 01:28:54,163 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:55,124 INFO Connection check task start - -2025-09-22 01:28:55,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:55,125 INFO Out dated connection ,size=0 - -2025-09-22 01:28:55,125 INFO Connection check task end - -2025-09-22 01:28:57,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:28:58,125 INFO Connection check task start - -2025-09-22 01:28:58,125 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:28:58,125 INFO Out dated connection ,size=0 - -2025-09-22 01:28:58,125 INFO Connection check task end - -2025-09-22 01:29:00,164 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:01,126 INFO Connection check task start - -2025-09-22 01:29:01,126 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:01,126 INFO Out dated connection ,size=0 - -2025-09-22 01:29:01,126 INFO Connection check task end - -2025-09-22 01:29:03,165 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:04,127 INFO Connection check task start - -2025-09-22 01:29:04,127 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:04,127 INFO Out dated connection ,size=0 - -2025-09-22 01:29:04,127 INFO Connection check task end - -2025-09-22 01:29:06,166 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:07,128 INFO Connection check task start - -2025-09-22 01:29:07,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:07,129 INFO Out dated connection ,size=0 - -2025-09-22 01:29:07,129 INFO Connection check task end - -2025-09-22 01:29:09,167 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:10,129 INFO Connection check task start - -2025-09-22 01:29:10,129 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:10,129 INFO Out dated connection ,size=0 - -2025-09-22 01:29:10,129 INFO Connection check task end - -2025-09-22 01:29:12,168 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:13,130 INFO Connection check task start - -2025-09-22 01:29:13,130 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:13,130 INFO Out dated connection ,size=0 - -2025-09-22 01:29:13,130 INFO Connection check task end - -2025-09-22 01:29:15,169 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:16,132 INFO Connection check task start - -2025-09-22 01:29:16,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:16,133 INFO Out dated connection ,size=0 - -2025-09-22 01:29:16,133 INFO Connection check task end - -2025-09-22 01:29:18,170 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:19,133 INFO Connection check task start - -2025-09-22 01:29:19,133 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:19,133 INFO Out dated connection ,size=0 - -2025-09-22 01:29:19,134 INFO Connection check task end - -2025-09-22 01:29:21,171 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:22,134 INFO Connection check task start - -2025-09-22 01:29:22,134 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:22,134 INFO Out dated connection ,size=0 - -2025-09-22 01:29:22,134 INFO Connection check task end - -2025-09-22 01:29:24,172 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:25,134 INFO Connection check task start - -2025-09-22 01:29:25,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:25,135 INFO Out dated connection ,size=0 - -2025-09-22 01:29:25,135 INFO Connection check task end - -2025-09-22 01:29:27,173 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:28,135 INFO Connection check task start - -2025-09-22 01:29:28,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:28,135 INFO Out dated connection ,size=0 - -2025-09-22 01:29:28,135 INFO Connection check task end - -2025-09-22 01:29:30,174 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:31,135 INFO Connection check task start - -2025-09-22 01:29:31,135 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:31,136 INFO Out dated connection ,size=0 - -2025-09-22 01:29:31,136 INFO Connection check task end - -2025-09-22 01:29:33,175 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:34,136 INFO Connection check task start - -2025-09-22 01:29:34,136 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:34,136 INFO Out dated connection ,size=0 - -2025-09-22 01:29:34,136 INFO Connection check task end - -2025-09-22 01:29:36,176 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:37,137 INFO Connection check task start - -2025-09-22 01:29:37,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:37,137 INFO Out dated connection ,size=0 - -2025-09-22 01:29:37,137 INFO Connection check task end - -2025-09-22 01:29:39,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:40,137 INFO Connection check task start - -2025-09-22 01:29:40,137 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:40,138 INFO Out dated connection ,size=0 - -2025-09-22 01:29:40,138 INFO Connection check task end - -2025-09-22 01:29:42,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:43,139 INFO Connection check task start - -2025-09-22 01:29:43,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:43,139 INFO Out dated connection ,size=0 - -2025-09-22 01:29:43,139 INFO Connection check task end - -2025-09-22 01:29:45,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:46,140 INFO Connection check task start - -2025-09-22 01:29:46,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:46,140 INFO Out dated connection ,size=0 - -2025-09-22 01:29:46,140 INFO Connection check task end - -2025-09-22 01:29:48,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:49,141 INFO Connection check task start - -2025-09-22 01:29:49,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:49,141 INFO Out dated connection ,size=0 - -2025-09-22 01:29:49,141 INFO Connection check task end - -2025-09-22 01:29:51,182 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:52,142 INFO Connection check task start - -2025-09-22 01:29:52,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:52,143 INFO Out dated connection ,size=0 - -2025-09-22 01:29:52,143 INFO Connection check task end - -2025-09-22 01:29:54,183 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:55,143 INFO Connection check task start - -2025-09-22 01:29:55,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:55,143 INFO Out dated connection ,size=0 - -2025-09-22 01:29:55,143 INFO Connection check task end - -2025-09-22 01:29:57,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:29:58,144 INFO Connection check task start - -2025-09-22 01:29:58,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:29:58,144 INFO Out dated connection ,size=0 - -2025-09-22 01:29:58,144 INFO Connection check task end - -2025-09-22 01:30:00,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:01,145 INFO Connection check task start - -2025-09-22 01:30:01,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:01,145 INFO Out dated connection ,size=0 - -2025-09-22 01:30:01,145 INFO Connection check task end - -2025-09-22 01:30:03,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:04,146 INFO Connection check task start - -2025-09-22 01:30:04,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:04,146 INFO Out dated connection ,size=0 - -2025-09-22 01:30:04,146 INFO Connection check task end - -2025-09-22 01:30:06,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:07,146 INFO Connection check task start - -2025-09-22 01:30:07,146 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:07,146 INFO Out dated connection ,size=0 - -2025-09-22 01:30:07,146 INFO Connection check task end - -2025-09-22 01:30:09,189 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:10,147 INFO Connection check task start - -2025-09-22 01:30:10,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:10,148 INFO Out dated connection ,size=0 - -2025-09-22 01:30:10,148 INFO Connection check task end - -2025-09-22 01:30:12,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:13,148 INFO Connection check task start - -2025-09-22 01:30:13,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:13,148 INFO Out dated connection ,size=0 - -2025-09-22 01:30:13,148 INFO Connection check task end - -2025-09-22 01:30:15,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:16,149 INFO Connection check task start - -2025-09-22 01:30:16,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:16,149 INFO Out dated connection ,size=0 - -2025-09-22 01:30:16,149 INFO Connection check task end - -2025-09-22 01:30:18,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:19,150 INFO Connection check task start - -2025-09-22 01:30:19,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:19,150 INFO Out dated connection ,size=0 - -2025-09-22 01:30:19,150 INFO Connection check task end - -2025-09-22 01:30:21,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:22,150 INFO Connection check task start - -2025-09-22 01:30:22,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:22,151 INFO Out dated connection ,size=0 - -2025-09-22 01:30:22,151 INFO Connection check task end - -2025-09-22 01:30:24,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:25,151 INFO Connection check task start - -2025-09-22 01:30:25,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:25,151 INFO Out dated connection ,size=0 - -2025-09-22 01:30:25,151 INFO Connection check task end - -2025-09-22 01:30:27,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:28,152 INFO Connection check task start - -2025-09-22 01:30:28,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:28,152 INFO Out dated connection ,size=0 - -2025-09-22 01:30:28,152 INFO Connection check task end - -2025-09-22 01:30:30,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:31,153 INFO Connection check task start - -2025-09-22 01:30:31,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:31,153 INFO Out dated connection ,size=0 - -2025-09-22 01:30:31,153 INFO Connection check task end - -2025-09-22 01:30:33,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:34,154 INFO Connection check task start - -2025-09-22 01:30:34,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:34,154 INFO Out dated connection ,size=0 - -2025-09-22 01:30:34,154 INFO Connection check task end - -2025-09-22 01:30:36,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:37,155 INFO Connection check task start - -2025-09-22 01:30:37,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:37,155 INFO Out dated connection ,size=0 - -2025-09-22 01:30:37,156 INFO Connection check task end - -2025-09-22 01:30:39,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:40,156 INFO Connection check task start - -2025-09-22 01:30:40,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:40,156 INFO Out dated connection ,size=0 - -2025-09-22 01:30:40,156 INFO Connection check task end - -2025-09-22 01:30:42,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:43,157 INFO Connection check task start - -2025-09-22 01:30:43,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:43,158 INFO Out dated connection ,size=0 - -2025-09-22 01:30:43,158 INFO Connection check task end - -2025-09-22 01:30:45,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:46,159 INFO Connection check task start - -2025-09-22 01:30:46,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:46,159 INFO Out dated connection ,size=0 - -2025-09-22 01:30:46,159 INFO Connection check task end - -2025-09-22 01:30:48,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:49,159 INFO Connection check task start - -2025-09-22 01:30:49,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:49,160 INFO Out dated connection ,size=0 - -2025-09-22 01:30:49,160 INFO Connection check task end - -2025-09-22 01:30:51,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:52,160 INFO Connection check task start - -2025-09-22 01:30:52,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:52,160 INFO Out dated connection ,size=0 - -2025-09-22 01:30:52,160 INFO Connection check task end - -2025-09-22 01:30:54,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:55,161 INFO Connection check task start - -2025-09-22 01:30:55,161 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:55,161 INFO Out dated connection ,size=0 - -2025-09-22 01:30:55,161 INFO Connection check task end - -2025-09-22 01:30:57,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:30:58,162 INFO Connection check task start - -2025-09-22 01:30:58,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:30:58,162 INFO Out dated connection ,size=0 - -2025-09-22 01:30:58,162 INFO Connection check task end - -2025-09-22 01:31:00,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:01,163 INFO Connection check task start - -2025-09-22 01:31:01,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:01,163 INFO Out dated connection ,size=0 - -2025-09-22 01:31:01,163 INFO Connection check task end - -2025-09-22 01:31:03,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:04,163 INFO Connection check task start - -2025-09-22 01:31:04,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:04,164 INFO Out dated connection ,size=0 - -2025-09-22 01:31:04,164 INFO Connection check task end - -2025-09-22 01:31:06,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:07,164 INFO Connection check task start - -2025-09-22 01:31:07,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:07,165 INFO Out dated connection ,size=0 - -2025-09-22 01:31:07,165 INFO Connection check task end - -2025-09-22 01:31:09,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:10,165 INFO Connection check task start - -2025-09-22 01:31:10,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:10,166 INFO Out dated connection ,size=0 - -2025-09-22 01:31:10,166 INFO Connection check task end - -2025-09-22 01:31:12,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:13,167 INFO Connection check task start - -2025-09-22 01:31:13,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:13,168 INFO Out dated connection ,size=0 - -2025-09-22 01:31:13,168 INFO Connection check task end - -2025-09-22 01:31:15,206 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:16,168 INFO Connection check task start - -2025-09-22 01:31:16,168 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:16,168 INFO Out dated connection ,size=0 - -2025-09-22 01:31:16,168 INFO Connection check task end - -2025-09-22 01:31:18,207 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:19,169 INFO Connection check task start - -2025-09-22 01:31:19,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:19,170 INFO Out dated connection ,size=0 - -2025-09-22 01:31:19,170 INFO Connection check task end - -2025-09-22 01:31:21,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:22,170 INFO Connection check task start - -2025-09-22 01:31:22,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:22,170 INFO Out dated connection ,size=0 - -2025-09-22 01:31:22,170 INFO Connection check task end - -2025-09-22 01:31:24,208 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:25,171 INFO Connection check task start - -2025-09-22 01:31:25,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:25,171 INFO Out dated connection ,size=0 - -2025-09-22 01:31:25,171 INFO Connection check task end - -2025-09-22 01:31:27,210 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:28,171 INFO Connection check task start - -2025-09-22 01:31:28,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:28,172 INFO Out dated connection ,size=0 - -2025-09-22 01:31:28,172 INFO Connection check task end - -2025-09-22 01:31:30,211 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:31,173 INFO Connection check task start - -2025-09-22 01:31:31,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:31,173 INFO Out dated connection ,size=0 - -2025-09-22 01:31:31,173 INFO Connection check task end - -2025-09-22 01:31:33,212 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:34,173 INFO Connection check task start - -2025-09-22 01:31:34,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:34,174 INFO Out dated connection ,size=0 - -2025-09-22 01:31:34,174 INFO Connection check task end - -2025-09-22 01:31:36,213 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:37,174 INFO Connection check task start - -2025-09-22 01:31:37,174 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:37,174 INFO Out dated connection ,size=0 - -2025-09-22 01:31:37,174 INFO Connection check task end - -2025-09-22 01:31:39,214 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:40,175 INFO Connection check task start - -2025-09-22 01:31:40,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:40,175 INFO Out dated connection ,size=0 - -2025-09-22 01:31:40,175 INFO Connection check task end - -2025-09-22 01:31:42,215 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:43,175 INFO Connection check task start - -2025-09-22 01:31:43,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:43,176 INFO Out dated connection ,size=0 - -2025-09-22 01:31:43,176 INFO Connection check task end - -2025-09-22 01:31:45,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:46,176 INFO Connection check task start - -2025-09-22 01:31:46,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:46,176 INFO Out dated connection ,size=0 - -2025-09-22 01:31:46,176 INFO Connection check task end - -2025-09-22 01:31:48,216 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:49,177 INFO Connection check task start - -2025-09-22 01:31:49,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:49,177 INFO Out dated connection ,size=0 - -2025-09-22 01:31:49,177 INFO Connection check task end - -2025-09-22 01:31:51,218 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:52,177 INFO Connection check task start - -2025-09-22 01:31:52,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:52,177 INFO Out dated connection ,size=0 - -2025-09-22 01:31:52,177 INFO Connection check task end - -2025-09-22 01:31:54,219 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:55,178 INFO Connection check task start - -2025-09-22 01:31:55,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:55,178 INFO Out dated connection ,size=0 - -2025-09-22 01:31:55,178 INFO Connection check task end - -2025-09-22 01:31:57,220 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:31:58,179 INFO Connection check task start - -2025-09-22 01:31:58,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:31:58,180 INFO Out dated connection ,size=0 - -2025-09-22 01:31:58,180 INFO Connection check task end - -2025-09-22 01:32:00,222 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:01,181 INFO Connection check task start - -2025-09-22 01:32:01,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:01,181 INFO Out dated connection ,size=0 - -2025-09-22 01:32:01,181 INFO Connection check task end - -2025-09-22 01:32:03,223 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:04,182 INFO Connection check task start - -2025-09-22 01:32:04,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:04,182 INFO Out dated connection ,size=0 - -2025-09-22 01:32:04,182 INFO Connection check task end - -2025-09-22 01:32:06,224 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:07,183 INFO Connection check task start - -2025-09-22 01:32:07,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:07,184 INFO Out dated connection ,size=0 - -2025-09-22 01:32:07,184 INFO Connection check task end - -2025-09-22 01:32:09,225 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:10,184 INFO Connection check task start - -2025-09-22 01:32:10,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:10,184 INFO Out dated connection ,size=0 - -2025-09-22 01:32:10,184 INFO Connection check task end - -2025-09-22 01:32:12,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:13,186 INFO Connection check task start - -2025-09-22 01:32:13,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:13,186 INFO Out dated connection ,size=0 - -2025-09-22 01:32:13,186 INFO Connection check task end - -2025-09-22 01:32:15,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:16,186 INFO Connection check task start - -2025-09-22 01:32:16,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:16,187 INFO Out dated connection ,size=0 - -2025-09-22 01:32:16,187 INFO Connection check task end - -2025-09-22 01:32:18,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:19,188 INFO Connection check task start - -2025-09-22 01:32:19,188 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:19,188 INFO Out dated connection ,size=0 - -2025-09-22 01:32:19,188 INFO Connection check task end - -2025-09-22 01:32:21,228 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:22,189 INFO Connection check task start - -2025-09-22 01:32:22,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:22,189 INFO Out dated connection ,size=0 - -2025-09-22 01:32:22,189 INFO Connection check task end - -2025-09-22 01:32:24,230 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:25,191 INFO Connection check task start - -2025-09-22 01:32:25,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:25,191 INFO Out dated connection ,size=0 - -2025-09-22 01:32:25,191 INFO Connection check task end - -2025-09-22 01:32:27,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:28,192 INFO Connection check task start - -2025-09-22 01:32:28,192 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:28,192 INFO Out dated connection ,size=0 - -2025-09-22 01:32:28,192 INFO Connection check task end - -2025-09-22 01:32:30,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:31,192 INFO Connection check task start - -2025-09-22 01:32:31,193 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:31,193 INFO Out dated connection ,size=0 - -2025-09-22 01:32:31,193 INFO Connection check task end - -2025-09-22 01:32:33,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:34,193 INFO Connection check task start - -2025-09-22 01:32:34,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:34,194 INFO Out dated connection ,size=0 - -2025-09-22 01:32:34,194 INFO Connection check task end - -2025-09-22 01:32:36,234 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:37,194 INFO Connection check task start - -2025-09-22 01:32:37,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:37,194 INFO Out dated connection ,size=0 - -2025-09-22 01:32:37,194 INFO Connection check task end - -2025-09-22 01:32:39,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:40,195 INFO Connection check task start - -2025-09-22 01:32:40,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:40,195 INFO Out dated connection ,size=0 - -2025-09-22 01:32:40,195 INFO Connection check task end - -2025-09-22 01:32:42,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:43,196 INFO Connection check task start - -2025-09-22 01:32:43,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:43,196 INFO Out dated connection ,size=0 - -2025-09-22 01:32:43,196 INFO Connection check task end - -2025-09-22 01:32:45,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:46,197 INFO Connection check task start - -2025-09-22 01:32:46,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:46,197 INFO Out dated connection ,size=0 - -2025-09-22 01:32:46,197 INFO Connection check task end - -2025-09-22 01:32:48,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:49,198 INFO Connection check task start - -2025-09-22 01:32:49,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:49,198 INFO Out dated connection ,size=0 - -2025-09-22 01:32:49,198 INFO Connection check task end - -2025-09-22 01:32:51,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:52,199 INFO Connection check task start - -2025-09-22 01:32:52,199 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:52,199 INFO Out dated connection ,size=0 - -2025-09-22 01:32:52,199 INFO Connection check task end - -2025-09-22 01:32:54,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:55,200 INFO Connection check task start - -2025-09-22 01:32:55,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:55,201 INFO Out dated connection ,size=0 - -2025-09-22 01:32:55,201 INFO Connection check task end - -2025-09-22 01:32:57,240 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:32:58,201 INFO Connection check task start - -2025-09-22 01:32:58,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:32:58,202 INFO Out dated connection ,size=0 - -2025-09-22 01:32:58,202 INFO Connection check task end - -2025-09-22 01:33:00,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:01,203 INFO Connection check task start - -2025-09-22 01:33:01,203 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:01,203 INFO Out dated connection ,size=0 - -2025-09-22 01:33:01,203 INFO Connection check task end - -2025-09-22 01:33:03,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:04,204 INFO Connection check task start - -2025-09-22 01:33:04,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:04,204 INFO Out dated connection ,size=0 - -2025-09-22 01:33:04,204 INFO Connection check task end - -2025-09-22 01:33:06,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:07,204 INFO Connection check task start - -2025-09-22 01:33:07,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:07,205 INFO Out dated connection ,size=0 - -2025-09-22 01:33:07,205 INFO Connection check task end - -2025-09-22 01:33:09,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:10,206 INFO Connection check task start - -2025-09-22 01:33:10,206 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:10,206 INFO Out dated connection ,size=0 - -2025-09-22 01:33:10,206 INFO Connection check task end - -2025-09-22 01:33:12,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:13,207 INFO Connection check task start - -2025-09-22 01:33:13,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:13,207 INFO Out dated connection ,size=0 - -2025-09-22 01:33:13,207 INFO Connection check task end - -2025-09-22 01:33:15,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:16,207 INFO Connection check task start - -2025-09-22 01:33:16,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:16,208 INFO Out dated connection ,size=0 - -2025-09-22 01:33:16,208 INFO Connection check task end - -2025-09-22 01:33:18,245 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:19,210 INFO Connection check task start - -2025-09-22 01:33:19,210 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:19,210 INFO Out dated connection ,size=0 - -2025-09-22 01:33:19,210 INFO Connection check task end - -2025-09-22 01:33:21,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:22,210 INFO Connection check task start - -2025-09-22 01:33:22,211 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:22,211 INFO Out dated connection ,size=0 - -2025-09-22 01:33:22,211 INFO Connection check task end - -2025-09-22 01:33:24,247 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:25,211 INFO Connection check task start - -2025-09-22 01:33:25,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:25,212 INFO Out dated connection ,size=0 - -2025-09-22 01:33:25,212 INFO Connection check task end - -2025-09-22 01:33:27,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:28,213 INFO Connection check task start - -2025-09-22 01:33:28,213 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:28,213 INFO Out dated connection ,size=0 - -2025-09-22 01:33:28,213 INFO Connection check task end - -2025-09-22 01:33:30,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:31,214 INFO Connection check task start - -2025-09-22 01:33:31,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:31,214 INFO Out dated connection ,size=0 - -2025-09-22 01:33:31,214 INFO Connection check task end - -2025-09-22 01:33:33,249 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:34,215 INFO Connection check task start - -2025-09-22 01:33:34,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:34,216 INFO Out dated connection ,size=0 - -2025-09-22 01:33:34,216 INFO Connection check task end - -2025-09-22 01:33:36,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:37,217 INFO Connection check task start - -2025-09-22 01:33:37,217 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:37,217 INFO Out dated connection ,size=0 - -2025-09-22 01:33:37,217 INFO Connection check task end - -2025-09-22 01:33:39,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:40,218 INFO Connection check task start - -2025-09-22 01:33:40,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:40,218 INFO Out dated connection ,size=0 - -2025-09-22 01:33:40,218 INFO Connection check task end - -2025-09-22 01:33:42,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:43,219 INFO Connection check task start - -2025-09-22 01:33:43,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:43,219 INFO Out dated connection ,size=0 - -2025-09-22 01:33:43,219 INFO Connection check task end - -2025-09-22 01:33:45,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:46,220 INFO Connection check task start - -2025-09-22 01:33:46,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:46,221 INFO Out dated connection ,size=0 - -2025-09-22 01:33:46,221 INFO Connection check task end - -2025-09-22 01:33:48,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:49,222 INFO Connection check task start - -2025-09-22 01:33:49,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:49,222 INFO Out dated connection ,size=0 - -2025-09-22 01:33:49,222 INFO Connection check task end - -2025-09-22 01:33:51,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:52,222 INFO Connection check task start - -2025-09-22 01:33:52,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:52,223 INFO Out dated connection ,size=0 - -2025-09-22 01:33:52,223 INFO Connection check task end - -2025-09-22 01:33:54,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:55,224 INFO Connection check task start - -2025-09-22 01:33:55,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:55,224 INFO Out dated connection ,size=0 - -2025-09-22 01:33:55,224 INFO Connection check task end - -2025-09-22 01:33:57,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:33:58,225 INFO Connection check task start - -2025-09-22 01:33:58,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:33:58,226 INFO Out dated connection ,size=0 - -2025-09-22 01:33:58,226 INFO Connection check task end - -2025-09-22 01:34:00,269 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:01,226 INFO Connection check task start - -2025-09-22 01:34:01,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:01,227 INFO Out dated connection ,size=0 - -2025-09-22 01:34:01,227 INFO Connection check task end - -2025-09-22 01:34:03,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:04,228 INFO Connection check task start - -2025-09-22 01:34:04,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:04,228 INFO Out dated connection ,size=0 - -2025-09-22 01:34:04,228 INFO Connection check task end - -2025-09-22 01:34:06,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:07,229 INFO Connection check task start - -2025-09-22 01:34:07,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:07,229 INFO Out dated connection ,size=0 - -2025-09-22 01:34:07,229 INFO Connection check task end - -2025-09-22 01:34:09,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:10,229 INFO Connection check task start - -2025-09-22 01:34:10,230 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:10,230 INFO Out dated connection ,size=0 - -2025-09-22 01:34:10,230 INFO Connection check task end - -2025-09-22 01:34:12,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:13,230 INFO Connection check task start - -2025-09-22 01:34:13,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:13,231 INFO Out dated connection ,size=0 - -2025-09-22 01:34:13,231 INFO Connection check task end - -2025-09-22 01:34:15,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:16,231 INFO Connection check task start - -2025-09-22 01:34:16,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:16,232 INFO Out dated connection ,size=0 - -2025-09-22 01:34:16,232 INFO Connection check task end - -2025-09-22 01:34:18,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:19,233 INFO Connection check task start - -2025-09-22 01:34:19,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:19,233 INFO Out dated connection ,size=0 - -2025-09-22 01:34:19,233 INFO Connection check task end - -2025-09-22 01:34:21,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:22,234 INFO Connection check task start - -2025-09-22 01:34:22,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:22,234 INFO Out dated connection ,size=0 - -2025-09-22 01:34:22,234 INFO Connection check task end - -2025-09-22 01:34:24,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:25,235 INFO Connection check task start - -2025-09-22 01:34:25,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:25,235 INFO Out dated connection ,size=0 - -2025-09-22 01:34:25,235 INFO Connection check task end - -2025-09-22 01:34:27,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:28,236 INFO Connection check task start - -2025-09-22 01:34:28,236 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:28,236 INFO Out dated connection ,size=0 - -2025-09-22 01:34:28,236 INFO Connection check task end - -2025-09-22 01:34:30,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:31,237 INFO Connection check task start - -2025-09-22 01:34:31,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:31,237 INFO Out dated connection ,size=0 - -2025-09-22 01:34:31,237 INFO Connection check task end - -2025-09-22 01:34:33,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:34,238 INFO Connection check task start - -2025-09-22 01:34:34,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:34,238 INFO Out dated connection ,size=0 - -2025-09-22 01:34:34,238 INFO Connection check task end - -2025-09-22 01:34:36,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:37,239 INFO Connection check task start - -2025-09-22 01:34:37,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:37,239 INFO Out dated connection ,size=0 - -2025-09-22 01:34:37,239 INFO Connection check task end - -2025-09-22 01:34:39,287 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:40,240 INFO Connection check task start - -2025-09-22 01:34:40,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:40,240 INFO Out dated connection ,size=0 - -2025-09-22 01:34:40,240 INFO Connection check task end - -2025-09-22 01:34:42,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:43,240 INFO Connection check task start - -2025-09-22 01:34:43,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:43,241 INFO Out dated connection ,size=0 - -2025-09-22 01:34:43,241 INFO Connection check task end - -2025-09-22 01:34:45,288 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:46,241 INFO Connection check task start - -2025-09-22 01:34:46,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:46,241 INFO Out dated connection ,size=0 - -2025-09-22 01:34:46,241 INFO Connection check task end - -2025-09-22 01:34:48,289 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:49,241 INFO Connection check task start - -2025-09-22 01:34:49,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:49,242 INFO Out dated connection ,size=0 - -2025-09-22 01:34:49,242 INFO Connection check task end - -2025-09-22 01:34:51,291 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:52,242 INFO Connection check task start - -2025-09-22 01:34:52,242 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:52,242 INFO Out dated connection ,size=0 - -2025-09-22 01:34:52,242 INFO Connection check task end - -2025-09-22 01:34:54,293 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:55,243 INFO Connection check task start - -2025-09-22 01:34:55,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:55,243 INFO Out dated connection ,size=0 - -2025-09-22 01:34:55,243 INFO Connection check task end - -2025-09-22 01:34:57,294 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:34:58,243 INFO Connection check task start - -2025-09-22 01:34:58,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:34:58,244 INFO Out dated connection ,size=0 - -2025-09-22 01:34:58,244 INFO Connection check task end - -2025-09-22 01:35:00,295 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:01,244 INFO Connection check task start - -2025-09-22 01:35:01,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:01,244 INFO Out dated connection ,size=0 - -2025-09-22 01:35:01,244 INFO Connection check task end - -2025-09-22 01:35:03,296 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:04,245 INFO Connection check task start - -2025-09-22 01:35:04,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:04,245 INFO Out dated connection ,size=0 - -2025-09-22 01:35:04,245 INFO Connection check task end - -2025-09-22 01:35:06,297 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:07,245 INFO Connection check task start - -2025-09-22 01:35:07,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:07,246 INFO Out dated connection ,size=0 - -2025-09-22 01:35:07,246 INFO Connection check task end - -2025-09-22 01:35:09,299 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:10,246 INFO Connection check task start - -2025-09-22 01:35:10,246 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:10,246 INFO Out dated connection ,size=0 - -2025-09-22 01:35:10,246 INFO Connection check task end - -2025-09-22 01:35:12,300 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:13,247 INFO Connection check task start - -2025-09-22 01:35:13,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:13,247 INFO Out dated connection ,size=0 - -2025-09-22 01:35:13,247 INFO Connection check task end - -2025-09-22 01:35:15,301 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:16,248 INFO Connection check task start - -2025-09-22 01:35:16,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:16,248 INFO Out dated connection ,size=0 - -2025-09-22 01:35:16,248 INFO Connection check task end - -2025-09-22 01:35:18,302 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:19,249 INFO Connection check task start - -2025-09-22 01:35:19,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:19,249 INFO Out dated connection ,size=0 - -2025-09-22 01:35:19,249 INFO Connection check task end - -2025-09-22 01:35:21,303 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:22,250 INFO Connection check task start - -2025-09-22 01:35:22,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:22,250 INFO Out dated connection ,size=0 - -2025-09-22 01:35:22,250 INFO Connection check task end - -2025-09-22 01:35:24,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:25,251 INFO Connection check task start - -2025-09-22 01:35:25,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:25,251 INFO Out dated connection ,size=0 - -2025-09-22 01:35:25,251 INFO Connection check task end - -2025-09-22 01:35:27,305 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:28,252 INFO Connection check task start - -2025-09-22 01:35:28,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:28,252 INFO Out dated connection ,size=0 - -2025-09-22 01:35:28,252 INFO Connection check task end - -2025-09-22 01:35:30,307 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:31,252 INFO Connection check task start - -2025-09-22 01:35:31,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:31,252 INFO Out dated connection ,size=0 - -2025-09-22 01:35:31,252 INFO Connection check task end - -2025-09-22 01:35:33,308 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:34,253 INFO Connection check task start - -2025-09-22 01:35:34,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:34,253 INFO Out dated connection ,size=0 - -2025-09-22 01:35:34,254 INFO Connection check task end - -2025-09-22 01:35:36,309 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:37,255 INFO Connection check task start - -2025-09-22 01:35:37,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:37,255 INFO Out dated connection ,size=0 - -2025-09-22 01:35:37,255 INFO Connection check task end - -2025-09-22 01:35:39,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:40,257 INFO Connection check task start - -2025-09-22 01:35:40,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:40,257 INFO Out dated connection ,size=0 - -2025-09-22 01:35:40,257 INFO Connection check task end - -2025-09-22 01:35:42,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:43,258 INFO Connection check task start - -2025-09-22 01:35:43,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:43,259 INFO Out dated connection ,size=0 - -2025-09-22 01:35:43,259 INFO Connection check task end - -2025-09-22 01:35:45,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:46,260 INFO Connection check task start - -2025-09-22 01:35:46,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:46,260 INFO Out dated connection ,size=0 - -2025-09-22 01:35:46,260 INFO Connection check task end - -2025-09-22 01:35:48,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:49,261 INFO Connection check task start - -2025-09-22 01:35:49,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:49,261 INFO Out dated connection ,size=0 - -2025-09-22 01:35:49,261 INFO Connection check task end - -2025-09-22 01:35:51,315 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:52,262 INFO Connection check task start - -2025-09-22 01:35:52,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:52,262 INFO Out dated connection ,size=0 - -2025-09-22 01:35:52,262 INFO Connection check task end - -2025-09-22 01:35:54,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:55,263 INFO Connection check task start - -2025-09-22 01:35:55,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:55,263 INFO Out dated connection ,size=0 - -2025-09-22 01:35:55,263 INFO Connection check task end - -2025-09-22 01:35:57,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:35:58,264 INFO Connection check task start - -2025-09-22 01:35:58,276 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:35:58,276 INFO Out dated connection ,size=0 - -2025-09-22 01:35:58,276 INFO Connection check task end - -2025-09-22 01:36:00,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:01,277 INFO Connection check task start - -2025-09-22 01:36:01,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:01,277 INFO Out dated connection ,size=0 - -2025-09-22 01:36:01,277 INFO Connection check task end - -2025-09-22 01:36:03,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:04,277 INFO Connection check task start - -2025-09-22 01:36:04,277 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:04,277 INFO Out dated connection ,size=0 - -2025-09-22 01:36:04,277 INFO Connection check task end - -2025-09-22 01:36:06,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:07,279 INFO Connection check task start - -2025-09-22 01:36:07,280 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:07,280 INFO Out dated connection ,size=0 - -2025-09-22 01:36:07,280 INFO Connection check task end - -2025-09-22 01:36:09,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:10,281 INFO Connection check task start - -2025-09-22 01:36:10,281 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:10,281 INFO Out dated connection ,size=0 - -2025-09-22 01:36:10,281 INFO Connection check task end - -2025-09-22 01:36:12,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:13,282 INFO Connection check task start - -2025-09-22 01:36:13,283 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:13,283 INFO Out dated connection ,size=0 - -2025-09-22 01:36:13,283 INFO Connection check task end - -2025-09-22 01:36:15,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:16,284 INFO Connection check task start - -2025-09-22 01:36:16,284 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:16,285 INFO Out dated connection ,size=0 - -2025-09-22 01:36:16,285 INFO Connection check task end - -2025-09-22 01:36:18,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:19,286 INFO Connection check task start - -2025-09-22 01:36:19,286 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:19,286 INFO Out dated connection ,size=0 - -2025-09-22 01:36:19,286 INFO Connection check task end - -2025-09-22 01:36:21,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:22,287 INFO Connection check task start - -2025-09-22 01:36:22,287 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:22,287 INFO Out dated connection ,size=0 - -2025-09-22 01:36:22,287 INFO Connection check task end - -2025-09-22 01:36:24,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:25,288 INFO Connection check task start - -2025-09-22 01:36:25,288 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:25,288 INFO Out dated connection ,size=0 - -2025-09-22 01:36:25,289 INFO Connection check task end - -2025-09-22 01:36:27,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:28,290 INFO Connection check task start - -2025-09-22 01:36:28,290 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:28,290 INFO Out dated connection ,size=0 - -2025-09-22 01:36:28,290 INFO Connection check task end - -2025-09-22 01:36:30,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:31,291 INFO Connection check task start - -2025-09-22 01:36:31,291 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:31,291 INFO Out dated connection ,size=0 - -2025-09-22 01:36:31,291 INFO Connection check task end - -2025-09-22 01:36:33,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:34,292 INFO Connection check task start - -2025-09-22 01:36:34,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:34,292 INFO Out dated connection ,size=0 - -2025-09-22 01:36:34,292 INFO Connection check task end - -2025-09-22 01:36:36,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:37,292 INFO Connection check task start - -2025-09-22 01:36:37,292 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:37,293 INFO Out dated connection ,size=0 - -2025-09-22 01:36:37,293 INFO Connection check task end - -2025-09-22 01:36:39,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:40,293 INFO Connection check task start - -2025-09-22 01:36:40,294 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:40,294 INFO Out dated connection ,size=0 - -2025-09-22 01:36:40,294 INFO Connection check task end - -2025-09-22 01:36:42,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:43,295 INFO Connection check task start - -2025-09-22 01:36:43,295 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:43,295 INFO Out dated connection ,size=0 - -2025-09-22 01:36:43,295 INFO Connection check task end - -2025-09-22 01:36:45,326 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:46,295 INFO Connection check task start - -2025-09-22 01:36:46,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:46,296 INFO Out dated connection ,size=0 - -2025-09-22 01:36:46,296 INFO Connection check task end - -2025-09-22 01:36:48,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:49,296 INFO Connection check task start - -2025-09-22 01:36:49,296 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:49,296 INFO Out dated connection ,size=0 - -2025-09-22 01:36:49,296 INFO Connection check task end - -2025-09-22 01:36:51,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:52,296 INFO Connection check task start - -2025-09-22 01:36:52,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:52,297 INFO Out dated connection ,size=0 - -2025-09-22 01:36:52,297 INFO Connection check task end - -2025-09-22 01:36:54,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:55,297 INFO Connection check task start - -2025-09-22 01:36:55,297 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:55,297 INFO Out dated connection ,size=0 - -2025-09-22 01:36:55,297 INFO Connection check task end - -2025-09-22 01:36:57,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:36:58,298 INFO Connection check task start - -2025-09-22 01:36:58,298 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:36:58,298 INFO Out dated connection ,size=0 - -2025-09-22 01:36:58,298 INFO Connection check task end - -2025-09-22 01:37:00,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:01,299 INFO Connection check task start - -2025-09-22 01:37:01,299 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:01,299 INFO Out dated connection ,size=0 - -2025-09-22 01:37:01,300 INFO Connection check task end - -2025-09-22 01:37:03,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:04,301 INFO Connection check task start - -2025-09-22 01:37:04,301 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:04,301 INFO Out dated connection ,size=0 - -2025-09-22 01:37:04,301 INFO Connection check task end - -2025-09-22 01:37:06,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:07,302 INFO Connection check task start - -2025-09-22 01:37:07,303 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:07,303 INFO Out dated connection ,size=0 - -2025-09-22 01:37:07,303 INFO Connection check task end - -2025-09-22 01:37:09,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:10,304 INFO Connection check task start - -2025-09-22 01:37:10,304 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:10,305 INFO Out dated connection ,size=0 - -2025-09-22 01:37:10,305 INFO Connection check task end - -2025-09-22 01:37:12,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:13,305 INFO Connection check task start - -2025-09-22 01:37:13,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:13,305 INFO Out dated connection ,size=0 - -2025-09-22 01:37:13,305 INFO Connection check task end - -2025-09-22 01:37:15,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:16,305 INFO Connection check task start - -2025-09-22 01:37:16,305 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:16,306 INFO Out dated connection ,size=0 - -2025-09-22 01:37:16,306 INFO Connection check task end - -2025-09-22 01:37:18,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:19,307 INFO Connection check task start - -2025-09-22 01:37:19,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:19,307 INFO Out dated connection ,size=0 - -2025-09-22 01:37:19,307 INFO Connection check task end - -2025-09-22 01:37:21,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:22,307 INFO Connection check task start - -2025-09-22 01:37:22,307 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:22,307 INFO Out dated connection ,size=0 - -2025-09-22 01:37:22,308 INFO Connection check task end - -2025-09-22 01:37:24,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:25,308 INFO Connection check task start - -2025-09-22 01:37:25,309 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:25,309 INFO Out dated connection ,size=0 - -2025-09-22 01:37:25,309 INFO Connection check task end - -2025-09-22 01:37:27,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:28,310 INFO Connection check task start - -2025-09-22 01:37:28,310 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:28,310 INFO Out dated connection ,size=0 - -2025-09-22 01:37:28,310 INFO Connection check task end - -2025-09-22 01:37:30,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:31,311 INFO Connection check task start - -2025-09-22 01:37:31,311 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:31,311 INFO Out dated connection ,size=0 - -2025-09-22 01:37:31,311 INFO Connection check task end - -2025-09-22 01:37:33,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:34,312 INFO Connection check task start - -2025-09-22 01:37:34,312 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:34,312 INFO Out dated connection ,size=0 - -2025-09-22 01:37:34,312 INFO Connection check task end - -2025-09-22 01:37:36,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:37,313 INFO Connection check task start - -2025-09-22 01:37:37,313 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:37,313 INFO Out dated connection ,size=0 - -2025-09-22 01:37:37,313 INFO Connection check task end - -2025-09-22 01:37:39,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:40,314 INFO Connection check task start - -2025-09-22 01:37:40,314 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:40,314 INFO Out dated connection ,size=0 - -2025-09-22 01:37:40,314 INFO Connection check task end - -2025-09-22 01:37:42,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:43,314 INFO Connection check task start - -2025-09-22 01:37:43,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:43,315 INFO Out dated connection ,size=0 - -2025-09-22 01:37:43,315 INFO Connection check task end - -2025-09-22 01:37:45,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:46,315 INFO Connection check task start - -2025-09-22 01:37:46,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:46,315 INFO Out dated connection ,size=0 - -2025-09-22 01:37:46,315 INFO Connection check task end - -2025-09-22 01:37:48,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:49,316 INFO Connection check task start - -2025-09-22 01:37:49,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:49,316 INFO Out dated connection ,size=0 - -2025-09-22 01:37:49,316 INFO Connection check task end - -2025-09-22 01:37:51,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:52,316 INFO Connection check task start - -2025-09-22 01:37:52,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:52,317 INFO Out dated connection ,size=0 - -2025-09-22 01:37:52,317 INFO Connection check task end - -2025-09-22 01:37:54,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:55,318 INFO Connection check task start - -2025-09-22 01:37:55,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:55,318 INFO Out dated connection ,size=0 - -2025-09-22 01:37:55,318 INFO Connection check task end - -2025-09-22 01:37:57,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:37:58,319 INFO Connection check task start - -2025-09-22 01:37:58,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:37:58,319 INFO Out dated connection ,size=0 - -2025-09-22 01:37:58,319 INFO Connection check task end - -2025-09-22 01:38:00,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:01,320 INFO Connection check task start - -2025-09-22 01:38:01,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:01,321 INFO Out dated connection ,size=0 - -2025-09-22 01:38:01,321 INFO Connection check task end - -2025-09-22 01:38:03,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:04,322 INFO Connection check task start - -2025-09-22 01:38:04,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:04,322 INFO Out dated connection ,size=0 - -2025-09-22 01:38:04,322 INFO Connection check task end - -2025-09-22 01:38:06,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:07,322 INFO Connection check task start - -2025-09-22 01:38:07,323 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:07,323 INFO Out dated connection ,size=0 - -2025-09-22 01:38:07,323 INFO Connection check task end - -2025-09-22 01:38:09,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:10,324 INFO Connection check task start - -2025-09-22 01:38:10,324 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:10,324 INFO Out dated connection ,size=0 - -2025-09-22 01:38:10,324 INFO Connection check task end - -2025-09-22 01:38:12,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:13,325 INFO Connection check task start - -2025-09-22 01:38:13,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:13,325 INFO Out dated connection ,size=0 - -2025-09-22 01:38:13,325 INFO Connection check task end - -2025-09-22 01:38:15,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:16,326 INFO Connection check task start - -2025-09-22 01:38:16,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:16,326 INFO Out dated connection ,size=0 - -2025-09-22 01:38:16,326 INFO Connection check task end - -2025-09-22 01:38:18,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:19,327 INFO Connection check task start - -2025-09-22 01:38:19,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:19,327 INFO Out dated connection ,size=0 - -2025-09-22 01:38:19,327 INFO Connection check task end - -2025-09-22 01:38:21,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:22,327 INFO Connection check task start - -2025-09-22 01:38:22,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:22,328 INFO Out dated connection ,size=0 - -2025-09-22 01:38:22,328 INFO Connection check task end - -2025-09-22 01:38:24,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:25,328 INFO Connection check task start - -2025-09-22 01:38:25,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:25,328 INFO Out dated connection ,size=0 - -2025-09-22 01:38:25,328 INFO Connection check task end - -2025-09-22 01:38:27,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:28,329 INFO Connection check task start - -2025-09-22 01:38:28,329 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:28,329 INFO Out dated connection ,size=0 - -2025-09-22 01:38:28,329 INFO Connection check task end - -2025-09-22 01:38:30,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:31,329 INFO Connection check task start - -2025-09-22 01:38:31,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:31,330 INFO Out dated connection ,size=0 - -2025-09-22 01:38:31,330 INFO Connection check task end - -2025-09-22 01:38:33,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:34,330 INFO Connection check task start - -2025-09-22 01:38:34,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:34,331 INFO Out dated connection ,size=0 - -2025-09-22 01:38:34,331 INFO Connection check task end - -2025-09-22 01:38:36,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:37,331 INFO Connection check task start - -2025-09-22 01:38:37,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:37,331 INFO Out dated connection ,size=0 - -2025-09-22 01:38:37,331 INFO Connection check task end - -2025-09-22 01:38:39,351 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:40,332 INFO Connection check task start - -2025-09-22 01:38:40,332 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:40,332 INFO Out dated connection ,size=0 - -2025-09-22 01:38:40,332 INFO Connection check task end - -2025-09-22 01:38:42,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:43,333 INFO Connection check task start - -2025-09-22 01:38:43,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:43,333 INFO Out dated connection ,size=0 - -2025-09-22 01:38:43,333 INFO Connection check task end - -2025-09-22 01:38:45,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:46,333 INFO Connection check task start - -2025-09-22 01:38:46,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:46,334 INFO Out dated connection ,size=0 - -2025-09-22 01:38:46,334 INFO Connection check task end - -2025-09-22 01:38:48,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:49,334 INFO Connection check task start - -2025-09-22 01:38:49,334 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:49,334 INFO Out dated connection ,size=0 - -2025-09-22 01:38:49,335 INFO Connection check task end - -2025-09-22 01:38:51,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:52,335 INFO Connection check task start - -2025-09-22 01:38:52,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:52,335 INFO Out dated connection ,size=0 - -2025-09-22 01:38:52,335 INFO Connection check task end - -2025-09-22 01:38:54,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:55,335 INFO Connection check task start - -2025-09-22 01:38:55,335 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:55,335 INFO Out dated connection ,size=0 - -2025-09-22 01:38:55,336 INFO Connection check task end - -2025-09-22 01:38:57,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:38:58,336 INFO Connection check task start - -2025-09-22 01:38:58,336 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:38:58,336 INFO Out dated connection ,size=0 - -2025-09-22 01:38:58,336 INFO Connection check task end - -2025-09-22 01:39:00,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:01,336 INFO Connection check task start - -2025-09-22 01:39:01,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:01,337 INFO Out dated connection ,size=0 - -2025-09-22 01:39:01,337 INFO Connection check task end - -2025-09-22 01:39:03,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:04,337 INFO Connection check task start - -2025-09-22 01:39:04,337 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:04,337 INFO Out dated connection ,size=0 - -2025-09-22 01:39:04,338 INFO Connection check task end - -2025-09-22 01:39:06,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:07,338 INFO Connection check task start - -2025-09-22 01:39:07,338 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:07,338 INFO Out dated connection ,size=0 - -2025-09-22 01:39:07,338 INFO Connection check task end - -2025-09-22 01:39:09,357 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:10,339 INFO Connection check task start - -2025-09-22 01:39:10,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:10,339 INFO Out dated connection ,size=0 - -2025-09-22 01:39:10,339 INFO Connection check task end - -2025-09-22 01:39:12,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:13,339 INFO Connection check task start - -2025-09-22 01:39:13,339 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:13,339 INFO Out dated connection ,size=0 - -2025-09-22 01:39:13,339 INFO Connection check task end - -2025-09-22 01:39:15,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:16,340 INFO Connection check task start - -2025-09-22 01:39:16,340 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:16,340 INFO Out dated connection ,size=0 - -2025-09-22 01:39:16,340 INFO Connection check task end - -2025-09-22 01:39:18,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:19,340 INFO Connection check task start - -2025-09-22 01:39:19,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:19,341 INFO Out dated connection ,size=0 - -2025-09-22 01:39:19,341 INFO Connection check task end - -2025-09-22 01:39:21,359 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:22,341 INFO Connection check task start - -2025-09-22 01:39:22,341 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:22,341 INFO Out dated connection ,size=0 - -2025-09-22 01:39:22,341 INFO Connection check task end - -2025-09-22 01:39:24,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:25,341 INFO Connection check task start - -2025-09-22 01:39:25,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:25,342 INFO Out dated connection ,size=0 - -2025-09-22 01:39:25,342 INFO Connection check task end - -2025-09-22 01:39:27,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:28,342 INFO Connection check task start - -2025-09-22 01:39:28,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:28,342 INFO Out dated connection ,size=0 - -2025-09-22 01:39:28,342 INFO Connection check task end - -2025-09-22 01:39:30,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:31,342 INFO Connection check task start - -2025-09-22 01:39:31,342 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:31,342 INFO Out dated connection ,size=0 - -2025-09-22 01:39:31,343 INFO Connection check task end - -2025-09-22 01:39:33,361 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:34,343 INFO Connection check task start - -2025-09-22 01:39:34,343 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:34,343 INFO Out dated connection ,size=0 - -2025-09-22 01:39:34,343 INFO Connection check task end - -2025-09-22 01:39:36,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:37,343 INFO Connection check task start - -2025-09-22 01:39:37,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:37,344 INFO Out dated connection ,size=0 - -2025-09-22 01:39:37,344 INFO Connection check task end - -2025-09-22 01:39:39,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:40,344 INFO Connection check task start - -2025-09-22 01:39:40,344 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:40,344 INFO Out dated connection ,size=0 - -2025-09-22 01:39:40,344 INFO Connection check task end - -2025-09-22 01:39:42,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:43,344 INFO Connection check task start - -2025-09-22 01:39:43,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:43,345 INFO Out dated connection ,size=0 - -2025-09-22 01:39:43,345 INFO Connection check task end - -2025-09-22 01:39:45,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:46,345 INFO Connection check task start - -2025-09-22 01:39:46,345 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:46,345 INFO Out dated connection ,size=0 - -2025-09-22 01:39:46,345 INFO Connection check task end - -2025-09-22 01:39:48,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:49,346 INFO Connection check task start - -2025-09-22 01:39:49,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:49,346 INFO Out dated connection ,size=0 - -2025-09-22 01:39:49,346 INFO Connection check task end - -2025-09-22 01:39:51,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:52,346 INFO Connection check task start - -2025-09-22 01:39:52,346 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:52,347 INFO Out dated connection ,size=0 - -2025-09-22 01:39:52,347 INFO Connection check task end - -2025-09-22 01:39:54,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:55,347 INFO Connection check task start - -2025-09-22 01:39:55,347 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:55,347 INFO Out dated connection ,size=0 - -2025-09-22 01:39:55,347 INFO Connection check task end - -2025-09-22 01:39:57,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:39:58,347 INFO Connection check task start - -2025-09-22 01:39:58,348 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:39:58,348 INFO Out dated connection ,size=0 - -2025-09-22 01:39:58,348 INFO Connection check task end - -2025-09-22 01:40:00,366 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:01,349 INFO Connection check task start - -2025-09-22 01:40:01,349 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:01,349 INFO Out dated connection ,size=0 - -2025-09-22 01:40:01,349 INFO Connection check task end - -2025-09-22 01:40:03,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:04,350 INFO Connection check task start - -2025-09-22 01:40:04,350 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:04,350 INFO Out dated connection ,size=0 - -2025-09-22 01:40:04,350 INFO Connection check task end - -2025-09-22 01:40:06,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:07,350 INFO Connection check task start - -2025-09-22 01:40:07,351 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:07,351 INFO Out dated connection ,size=0 - -2025-09-22 01:40:07,351 INFO Connection check task end - -2025-09-22 01:40:09,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:10,352 INFO Connection check task start - -2025-09-22 01:40:10,352 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:10,352 INFO Out dated connection ,size=0 - -2025-09-22 01:40:10,353 INFO Connection check task end - -2025-09-22 01:40:12,375 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:13,354 INFO Connection check task start - -2025-09-22 01:40:13,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:13,355 INFO Out dated connection ,size=0 - -2025-09-22 01:40:13,355 INFO Connection check task end - -2025-09-22 01:40:15,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:16,355 INFO Connection check task start - -2025-09-22 01:40:16,355 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:16,355 INFO Out dated connection ,size=0 - -2025-09-22 01:40:16,355 INFO Connection check task end - -2025-09-22 01:40:18,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:19,356 INFO Connection check task start - -2025-09-22 01:40:19,356 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:19,356 INFO Out dated connection ,size=0 - -2025-09-22 01:40:19,356 INFO Connection check task end - -2025-09-22 01:40:21,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:22,356 INFO Connection check task start - -2025-09-22 01:40:22,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:22,357 INFO Out dated connection ,size=0 - -2025-09-22 01:40:22,357 INFO Connection check task end - -2025-09-22 01:40:24,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:25,357 INFO Connection check task start - -2025-09-22 01:40:25,357 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:25,357 INFO Out dated connection ,size=0 - -2025-09-22 01:40:25,357 INFO Connection check task end - -2025-09-22 01:40:27,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:28,358 INFO Connection check task start - -2025-09-22 01:40:28,358 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:28,358 INFO Out dated connection ,size=0 - -2025-09-22 01:40:28,358 INFO Connection check task end - -2025-09-22 01:40:30,379 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:31,358 INFO Connection check task start - -2025-09-22 01:40:31,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:31,359 INFO Out dated connection ,size=0 - -2025-09-22 01:40:31,359 INFO Connection check task end - -2025-09-22 01:40:33,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:34,359 INFO Connection check task start - -2025-09-22 01:40:34,359 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:34,359 INFO Out dated connection ,size=0 - -2025-09-22 01:40:34,359 INFO Connection check task end - -2025-09-22 01:40:36,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:37,359 INFO Connection check task start - -2025-09-22 01:40:37,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:37,360 INFO Out dated connection ,size=0 - -2025-09-22 01:40:37,360 INFO Connection check task end - -2025-09-22 01:40:39,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:40,360 INFO Connection check task start - -2025-09-22 01:40:40,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:40,360 INFO Out dated connection ,size=0 - -2025-09-22 01:40:40,360 INFO Connection check task end - -2025-09-22 01:40:42,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:43,360 INFO Connection check task start - -2025-09-22 01:40:43,360 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:43,361 INFO Out dated connection ,size=0 - -2025-09-22 01:40:43,361 INFO Connection check task end - -2025-09-22 01:40:45,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:46,361 INFO Connection check task start - -2025-09-22 01:40:46,361 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:46,361 INFO Out dated connection ,size=0 - -2025-09-22 01:40:46,361 INFO Connection check task end - -2025-09-22 01:40:48,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:49,362 INFO Connection check task start - -2025-09-22 01:40:49,362 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:49,362 INFO Out dated connection ,size=0 - -2025-09-22 01:40:49,362 INFO Connection check task end - -2025-09-22 01:40:51,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:52,362 INFO Connection check task start - -2025-09-22 01:40:52,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:52,363 INFO Out dated connection ,size=0 - -2025-09-22 01:40:52,363 INFO Connection check task end - -2025-09-22 01:40:54,384 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:55,363 INFO Connection check task start - -2025-09-22 01:40:55,363 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:55,363 INFO Out dated connection ,size=0 - -2025-09-22 01:40:55,363 INFO Connection check task end - -2025-09-22 01:40:57,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:40:58,363 INFO Connection check task start - -2025-09-22 01:40:58,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:40:58,364 INFO Out dated connection ,size=0 - -2025-09-22 01:40:58,364 INFO Connection check task end - -2025-09-22 01:41:00,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:01,364 INFO Connection check task start - -2025-09-22 01:41:01,364 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:01,364 INFO Out dated connection ,size=0 - -2025-09-22 01:41:01,364 INFO Connection check task end - -2025-09-22 01:41:03,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:04,364 INFO Connection check task start - -2025-09-22 01:41:04,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:04,365 INFO Out dated connection ,size=0 - -2025-09-22 01:41:04,365 INFO Connection check task end - -2025-09-22 01:41:06,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:07,365 INFO Connection check task start - -2025-09-22 01:41:07,365 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:07,365 INFO Out dated connection ,size=0 - -2025-09-22 01:41:07,365 INFO Connection check task end - -2025-09-22 01:41:09,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:10,365 INFO Connection check task start - -2025-09-22 01:41:10,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:10,366 INFO Out dated connection ,size=0 - -2025-09-22 01:41:10,366 INFO Connection check task end - -2025-09-22 01:41:12,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:13,366 INFO Connection check task start - -2025-09-22 01:41:13,366 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:13,366 INFO Out dated connection ,size=0 - -2025-09-22 01:41:13,366 INFO Connection check task end - -2025-09-22 01:41:15,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:16,367 INFO Connection check task start - -2025-09-22 01:41:16,367 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:16,367 INFO Out dated connection ,size=0 - -2025-09-22 01:41:16,367 INFO Connection check task end - -2025-09-22 01:41:18,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:19,367 INFO Connection check task start - -2025-09-22 01:41:19,368 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:19,368 INFO Out dated connection ,size=0 - -2025-09-22 01:41:19,368 INFO Connection check task end - -2025-09-22 01:41:21,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:22,369 INFO Connection check task start - -2025-09-22 01:41:22,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:22,369 INFO Out dated connection ,size=0 - -2025-09-22 01:41:22,369 INFO Connection check task end - -2025-09-22 01:41:24,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:25,369 INFO Connection check task start - -2025-09-22 01:41:25,369 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:25,369 INFO Out dated connection ,size=0 - -2025-09-22 01:41:25,369 INFO Connection check task end - -2025-09-22 01:41:27,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:28,369 INFO Connection check task start - -2025-09-22 01:41:28,370 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:28,370 INFO Out dated connection ,size=0 - -2025-09-22 01:41:28,370 INFO Connection check task end - -2025-09-22 01:41:30,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:31,371 INFO Connection check task start - -2025-09-22 01:41:31,371 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:31,371 INFO Out dated connection ,size=0 - -2025-09-22 01:41:31,371 INFO Connection check task end - -2025-09-22 01:41:33,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:34,371 INFO Connection check task start - -2025-09-22 01:41:34,372 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:34,372 INFO Out dated connection ,size=0 - -2025-09-22 01:41:34,372 INFO Connection check task end - -2025-09-22 01:41:36,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:37,373 INFO Connection check task start - -2025-09-22 01:41:37,373 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:37,373 INFO Out dated connection ,size=0 - -2025-09-22 01:41:37,373 INFO Connection check task end - -2025-09-22 01:41:39,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:40,374 INFO Connection check task start - -2025-09-22 01:41:40,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:40,374 INFO Out dated connection ,size=0 - -2025-09-22 01:41:40,374 INFO Connection check task end - -2025-09-22 01:41:42,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:43,374 INFO Connection check task start - -2025-09-22 01:41:43,374 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:43,374 INFO Out dated connection ,size=0 - -2025-09-22 01:41:43,374 INFO Connection check task end - -2025-09-22 01:41:45,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:46,375 INFO Connection check task start - -2025-09-22 01:41:46,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:46,375 INFO Out dated connection ,size=0 - -2025-09-22 01:41:46,375 INFO Connection check task end - -2025-09-22 01:41:48,400 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:49,375 INFO Connection check task start - -2025-09-22 01:41:49,375 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:49,376 INFO Out dated connection ,size=0 - -2025-09-22 01:41:49,376 INFO Connection check task end - -2025-09-22 01:41:51,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:52,377 INFO Connection check task start - -2025-09-22 01:41:52,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:52,377 INFO Out dated connection ,size=0 - -2025-09-22 01:41:52,377 INFO Connection check task end - -2025-09-22 01:41:54,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:55,377 INFO Connection check task start - -2025-09-22 01:41:55,377 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:55,378 INFO Out dated connection ,size=0 - -2025-09-22 01:41:55,378 INFO Connection check task end - -2025-09-22 01:41:57,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:41:58,378 INFO Connection check task start - -2025-09-22 01:41:58,378 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:41:58,378 INFO Out dated connection ,size=0 - -2025-09-22 01:41:58,378 INFO Connection check task end - -2025-09-22 01:42:00,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:01,378 INFO Connection check task start - -2025-09-22 01:42:01,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:01,379 INFO Out dated connection ,size=0 - -2025-09-22 01:42:01,379 INFO Connection check task end - -2025-09-22 01:42:03,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:04,379 INFO Connection check task start - -2025-09-22 01:42:04,379 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:04,379 INFO Out dated connection ,size=0 - -2025-09-22 01:42:04,379 INFO Connection check task end - -2025-09-22 01:42:06,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:07,379 INFO Connection check task start - -2025-09-22 01:42:07,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:07,380 INFO Out dated connection ,size=0 - -2025-09-22 01:42:07,380 INFO Connection check task end - -2025-09-22 01:42:09,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:10,380 INFO Connection check task start - -2025-09-22 01:42:10,380 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:10,380 INFO Out dated connection ,size=0 - -2025-09-22 01:42:10,380 INFO Connection check task end - -2025-09-22 01:42:12,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:13,381 INFO Connection check task start - -2025-09-22 01:42:13,381 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:13,381 INFO Out dated connection ,size=0 - -2025-09-22 01:42:13,382 INFO Connection check task end - -2025-09-22 01:42:15,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:16,382 INFO Connection check task start - -2025-09-22 01:42:16,382 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:16,382 INFO Out dated connection ,size=0 - -2025-09-22 01:42:16,382 INFO Connection check task end - -2025-09-22 01:42:18,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:19,383 INFO Connection check task start - -2025-09-22 01:42:19,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:19,383 INFO Out dated connection ,size=0 - -2025-09-22 01:42:19,383 INFO Connection check task end - -2025-09-22 01:42:21,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:22,383 INFO Connection check task start - -2025-09-22 01:42:22,383 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:22,383 INFO Out dated connection ,size=0 - -2025-09-22 01:42:22,383 INFO Connection check task end - -2025-09-22 01:42:24,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:25,384 INFO Connection check task start - -2025-09-22 01:42:25,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:25,384 INFO Out dated connection ,size=0 - -2025-09-22 01:42:25,384 INFO Connection check task end - -2025-09-22 01:42:27,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:28,384 INFO Connection check task start - -2025-09-22 01:42:28,384 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:28,384 INFO Out dated connection ,size=0 - -2025-09-22 01:42:28,384 INFO Connection check task end - -2025-09-22 01:42:30,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:31,385 INFO Connection check task start - -2025-09-22 01:42:31,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:31,385 INFO Out dated connection ,size=0 - -2025-09-22 01:42:31,385 INFO Connection check task end - -2025-09-22 01:42:33,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:34,385 INFO Connection check task start - -2025-09-22 01:42:34,385 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:34,385 INFO Out dated connection ,size=0 - -2025-09-22 01:42:34,385 INFO Connection check task end - -2025-09-22 01:42:36,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:37,386 INFO Connection check task start - -2025-09-22 01:42:37,386 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:37,386 INFO Out dated connection ,size=0 - -2025-09-22 01:42:37,386 INFO Connection check task end - -2025-09-22 01:42:39,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:40,387 INFO Connection check task start - -2025-09-22 01:42:40,387 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:40,387 INFO Out dated connection ,size=0 - -2025-09-22 01:42:40,387 INFO Connection check task end - -2025-09-22 01:42:42,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:43,388 INFO Connection check task start - -2025-09-22 01:42:43,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:43,388 INFO Out dated connection ,size=0 - -2025-09-22 01:42:43,388 INFO Connection check task end - -2025-09-22 01:42:45,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:46,388 INFO Connection check task start - -2025-09-22 01:42:46,388 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:46,388 INFO Out dated connection ,size=0 - -2025-09-22 01:42:46,388 INFO Connection check task end - -2025-09-22 01:42:48,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:49,389 INFO Connection check task start - -2025-09-22 01:42:49,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:49,389 INFO Out dated connection ,size=0 - -2025-09-22 01:42:49,389 INFO Connection check task end - -2025-09-22 01:42:51,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:52,389 INFO Connection check task start - -2025-09-22 01:42:52,389 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:52,389 INFO Out dated connection ,size=0 - -2025-09-22 01:42:52,389 INFO Connection check task end - -2025-09-22 01:42:54,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:55,390 INFO Connection check task start - -2025-09-22 01:42:55,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:55,390 INFO Out dated connection ,size=0 - -2025-09-22 01:42:55,390 INFO Connection check task end - -2025-09-22 01:42:57,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:42:58,390 INFO Connection check task start - -2025-09-22 01:42:58,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:42:58,390 INFO Out dated connection ,size=0 - -2025-09-22 01:42:58,390 INFO Connection check task end - -2025-09-22 01:43:00,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:01,390 INFO Connection check task start - -2025-09-22 01:43:01,390 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:01,390 INFO Out dated connection ,size=0 - -2025-09-22 01:43:01,391 INFO Connection check task end - -2025-09-22 01:43:03,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:04,391 INFO Connection check task start - -2025-09-22 01:43:04,391 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:04,391 INFO Out dated connection ,size=0 - -2025-09-22 01:43:04,391 INFO Connection check task end - -2025-09-22 01:43:06,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:07,392 INFO Connection check task start - -2025-09-22 01:43:07,392 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:07,392 INFO Out dated connection ,size=0 - -2025-09-22 01:43:07,392 INFO Connection check task end - -2025-09-22 01:43:09,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:10,393 INFO Connection check task start - -2025-09-22 01:43:10,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:10,393 INFO Out dated connection ,size=0 - -2025-09-22 01:43:10,393 INFO Connection check task end - -2025-09-22 01:43:12,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:13,393 INFO Connection check task start - -2025-09-22 01:43:13,393 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:13,393 INFO Out dated connection ,size=0 - -2025-09-22 01:43:13,393 INFO Connection check task end - -2025-09-22 01:43:15,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:16,394 INFO Connection check task start - -2025-09-22 01:43:16,394 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:16,394 INFO Out dated connection ,size=0 - -2025-09-22 01:43:16,394 INFO Connection check task end - -2025-09-22 01:43:18,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:19,395 INFO Connection check task start - -2025-09-22 01:43:19,395 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:19,395 INFO Out dated connection ,size=0 - -2025-09-22 01:43:19,395 INFO Connection check task end - -2025-09-22 01:43:21,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:22,395 INFO Connection check task start - -2025-09-22 01:43:22,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:22,396 INFO Out dated connection ,size=0 - -2025-09-22 01:43:22,396 INFO Connection check task end - -2025-09-22 01:43:24,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:25,396 INFO Connection check task start - -2025-09-22 01:43:25,396 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:25,396 INFO Out dated connection ,size=0 - -2025-09-22 01:43:25,396 INFO Connection check task end - -2025-09-22 01:43:27,457 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:28,397 INFO Connection check task start - -2025-09-22 01:43:28,397 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:28,397 INFO Out dated connection ,size=0 - -2025-09-22 01:43:28,397 INFO Connection check task end - -2025-09-22 01:43:30,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:31,398 INFO Connection check task start - -2025-09-22 01:43:31,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:31,398 INFO Out dated connection ,size=0 - -2025-09-22 01:43:31,398 INFO Connection check task end - -2025-09-22 01:43:33,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:34,398 INFO Connection check task start - -2025-09-22 01:43:34,398 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:34,398 INFO Out dated connection ,size=0 - -2025-09-22 01:43:34,398 INFO Connection check task end - -2025-09-22 01:43:36,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:37,399 INFO Connection check task start - -2025-09-22 01:43:37,399 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:37,399 INFO Out dated connection ,size=0 - -2025-09-22 01:43:37,399 INFO Connection check task end - -2025-09-22 01:43:39,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:40,400 INFO Connection check task start - -2025-09-22 01:43:40,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:40,401 INFO Out dated connection ,size=0 - -2025-09-22 01:43:40,401 INFO Connection check task end - -2025-09-22 01:43:42,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:43,402 INFO Connection check task start - -2025-09-22 01:43:43,402 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:43,402 INFO Out dated connection ,size=0 - -2025-09-22 01:43:43,402 INFO Connection check task end - -2025-09-22 01:43:45,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:46,403 INFO Connection check task start - -2025-09-22 01:43:46,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:46,403 INFO Out dated connection ,size=0 - -2025-09-22 01:43:46,403 INFO Connection check task end - -2025-09-22 01:43:48,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:49,403 INFO Connection check task start - -2025-09-22 01:43:49,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:49,403 INFO Out dated connection ,size=0 - -2025-09-22 01:43:49,403 INFO Connection check task end - -2025-09-22 01:43:51,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:52,403 INFO Connection check task start - -2025-09-22 01:43:52,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:52,404 INFO Out dated connection ,size=0 - -2025-09-22 01:43:52,404 INFO Connection check task end - -2025-09-22 01:43:54,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:55,404 INFO Connection check task start - -2025-09-22 01:43:55,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:55,405 INFO Out dated connection ,size=0 - -2025-09-22 01:43:55,405 INFO Connection check task end - -2025-09-22 01:43:57,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:43:58,405 INFO Connection check task start - -2025-09-22 01:43:58,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:43:58,406 INFO Out dated connection ,size=0 - -2025-09-22 01:43:58,406 INFO Connection check task end - -2025-09-22 01:44:00,468 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:01,406 INFO Connection check task start - -2025-09-22 01:44:01,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:01,406 INFO Out dated connection ,size=0 - -2025-09-22 01:44:01,406 INFO Connection check task end - -2025-09-22 01:44:03,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:04,407 INFO Connection check task start - -2025-09-22 01:44:04,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:04,407 INFO Out dated connection ,size=0 - -2025-09-22 01:44:04,407 INFO Connection check task end - -2025-09-22 01:44:06,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:07,407 INFO Connection check task start - -2025-09-22 01:44:07,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:07,408 INFO Out dated connection ,size=0 - -2025-09-22 01:44:07,408 INFO Connection check task end - -2025-09-22 01:44:09,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:10,408 INFO Connection check task start - -2025-09-22 01:44:10,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:10,408 INFO Out dated connection ,size=0 - -2025-09-22 01:44:10,408 INFO Connection check task end - -2025-09-22 01:44:12,471 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:13,409 INFO Connection check task start - -2025-09-22 01:44:13,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:13,409 INFO Out dated connection ,size=0 - -2025-09-22 01:44:13,409 INFO Connection check task end - -2025-09-22 01:44:15,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:16,409 INFO Connection check task start - -2025-09-22 01:44:16,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:16,409 INFO Out dated connection ,size=0 - -2025-09-22 01:44:16,409 INFO Connection check task end - -2025-09-22 01:44:18,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:19,410 INFO Connection check task start - -2025-09-22 01:44:19,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:19,410 INFO Out dated connection ,size=0 - -2025-09-22 01:44:19,410 INFO Connection check task end - -2025-09-22 01:44:21,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:22,412 INFO Connection check task start - -2025-09-22 01:44:22,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:22,412 INFO Out dated connection ,size=0 - -2025-09-22 01:44:22,412 INFO Connection check task end - -2025-09-22 01:44:24,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:25,412 INFO Connection check task start - -2025-09-22 01:44:25,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:25,413 INFO Out dated connection ,size=0 - -2025-09-22 01:44:25,413 INFO Connection check task end - -2025-09-22 01:44:27,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:28,413 INFO Connection check task start - -2025-09-22 01:44:28,413 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:28,413 INFO Out dated connection ,size=0 - -2025-09-22 01:44:28,413 INFO Connection check task end - -2025-09-22 01:44:30,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:31,414 INFO Connection check task start - -2025-09-22 01:44:31,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:31,414 INFO Out dated connection ,size=0 - -2025-09-22 01:44:31,414 INFO Connection check task end - -2025-09-22 01:44:33,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:34,415 INFO Connection check task start - -2025-09-22 01:44:34,415 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:34,416 INFO Out dated connection ,size=0 - -2025-09-22 01:44:34,416 INFO Connection check task end - -2025-09-22 01:44:36,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:37,416 INFO Connection check task start - -2025-09-22 01:44:37,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:37,416 INFO Out dated connection ,size=0 - -2025-09-22 01:44:37,416 INFO Connection check task end - -2025-09-22 01:44:39,476 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:40,416 INFO Connection check task start - -2025-09-22 01:44:40,417 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:40,417 INFO Out dated connection ,size=0 - -2025-09-22 01:44:40,417 INFO Connection check task end - -2025-09-22 01:44:42,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:43,418 INFO Connection check task start - -2025-09-22 01:44:43,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:43,418 INFO Out dated connection ,size=0 - -2025-09-22 01:44:43,418 INFO Connection check task end - -2025-09-22 01:44:45,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:46,420 INFO Connection check task start - -2025-09-22 01:44:46,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:46,420 INFO Out dated connection ,size=0 - -2025-09-22 01:44:46,420 INFO Connection check task end - -2025-09-22 01:44:48,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:49,421 INFO Connection check task start - -2025-09-22 01:44:49,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:49,421 INFO Out dated connection ,size=0 - -2025-09-22 01:44:49,421 INFO Connection check task end - -2025-09-22 01:44:51,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:52,422 INFO Connection check task start - -2025-09-22 01:44:52,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:52,422 INFO Out dated connection ,size=0 - -2025-09-22 01:44:52,422 INFO Connection check task end - -2025-09-22 01:44:54,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:55,423 INFO Connection check task start - -2025-09-22 01:44:55,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:55,423 INFO Out dated connection ,size=0 - -2025-09-22 01:44:55,423 INFO Connection check task end - -2025-09-22 01:44:57,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:44:58,424 INFO Connection check task start - -2025-09-22 01:44:58,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:44:58,424 INFO Out dated connection ,size=0 - -2025-09-22 01:44:58,424 INFO Connection check task end - -2025-09-22 01:45:00,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:01,425 INFO Connection check task start - -2025-09-22 01:45:01,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:01,425 INFO Out dated connection ,size=0 - -2025-09-22 01:45:01,425 INFO Connection check task end - -2025-09-22 01:45:03,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:04,425 INFO Connection check task start - -2025-09-22 01:45:04,425 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:04,425 INFO Out dated connection ,size=0 - -2025-09-22 01:45:04,425 INFO Connection check task end - -2025-09-22 01:45:06,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:07,427 INFO Connection check task start - -2025-09-22 01:45:07,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:07,427 INFO Out dated connection ,size=0 - -2025-09-22 01:45:07,427 INFO Connection check task end - -2025-09-22 01:45:09,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:10,428 INFO Connection check task start - -2025-09-22 01:45:10,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:10,429 INFO Out dated connection ,size=0 - -2025-09-22 01:45:10,429 INFO Connection check task end - -2025-09-22 01:45:12,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:13,430 INFO Connection check task start - -2025-09-22 01:45:13,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:13,431 INFO Out dated connection ,size=0 - -2025-09-22 01:45:13,431 INFO Connection check task end - -2025-09-22 01:45:15,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:16,431 INFO Connection check task start - -2025-09-22 01:45:16,431 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:16,431 INFO Out dated connection ,size=0 - -2025-09-22 01:45:16,432 INFO Connection check task end - -2025-09-22 01:45:18,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:19,433 INFO Connection check task start - -2025-09-22 01:45:19,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:19,433 INFO Out dated connection ,size=0 - -2025-09-22 01:45:19,433 INFO Connection check task end - -2025-09-22 01:45:21,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:22,434 INFO Connection check task start - -2025-09-22 01:45:22,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:22,434 INFO Out dated connection ,size=0 - -2025-09-22 01:45:22,434 INFO Connection check task end - -2025-09-22 01:45:24,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:25,436 INFO Connection check task start - -2025-09-22 01:45:25,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:25,436 INFO Out dated connection ,size=0 - -2025-09-22 01:45:25,436 INFO Connection check task end - -2025-09-22 01:45:27,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:28,437 INFO Connection check task start - -2025-09-22 01:45:28,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:28,437 INFO Out dated connection ,size=0 - -2025-09-22 01:45:28,437 INFO Connection check task end - -2025-09-22 01:45:30,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:31,438 INFO Connection check task start - -2025-09-22 01:45:31,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:31,439 INFO Out dated connection ,size=0 - -2025-09-22 01:45:31,439 INFO Connection check task end - -2025-09-22 01:45:33,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:34,440 INFO Connection check task start - -2025-09-22 01:45:34,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:34,440 INFO Out dated connection ,size=0 - -2025-09-22 01:45:34,440 INFO Connection check task end - -2025-09-22 01:45:36,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:37,442 INFO Connection check task start - -2025-09-22 01:45:37,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:37,442 INFO Out dated connection ,size=0 - -2025-09-22 01:45:37,442 INFO Connection check task end - -2025-09-22 01:45:39,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:40,442 INFO Connection check task start - -2025-09-22 01:45:40,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:40,442 INFO Out dated connection ,size=0 - -2025-09-22 01:45:40,442 INFO Connection check task end - -2025-09-22 01:45:42,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:43,443 INFO Connection check task start - -2025-09-22 01:45:43,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:43,443 INFO Out dated connection ,size=0 - -2025-09-22 01:45:43,443 INFO Connection check task end - -2025-09-22 01:45:45,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:46,444 INFO Connection check task start - -2025-09-22 01:45:46,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:46,444 INFO Out dated connection ,size=0 - -2025-09-22 01:45:46,444 INFO Connection check task end - -2025-09-22 01:45:48,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:49,445 INFO Connection check task start - -2025-09-22 01:45:49,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:49,445 INFO Out dated connection ,size=0 - -2025-09-22 01:45:49,445 INFO Connection check task end - -2025-09-22 01:45:51,500 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:52,446 INFO Connection check task start - -2025-09-22 01:45:52,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:52,446 INFO Out dated connection ,size=0 - -2025-09-22 01:45:52,446 INFO Connection check task end - -2025-09-22 01:45:54,501 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:55,446 INFO Connection check task start - -2025-09-22 01:45:55,446 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:55,446 INFO Out dated connection ,size=0 - -2025-09-22 01:45:55,446 INFO Connection check task end - -2025-09-22 01:45:57,502 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:45:58,447 INFO Connection check task start - -2025-09-22 01:45:58,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:45:58,448 INFO Out dated connection ,size=0 - -2025-09-22 01:45:58,448 INFO Connection check task end - -2025-09-22 01:46:00,503 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:01,449 INFO Connection check task start - -2025-09-22 01:46:01,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:01,449 INFO Out dated connection ,size=0 - -2025-09-22 01:46:01,449 INFO Connection check task end - -2025-09-22 01:46:03,504 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:04,450 INFO Connection check task start - -2025-09-22 01:46:04,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:04,450 INFO Out dated connection ,size=0 - -2025-09-22 01:46:04,450 INFO Connection check task end - -2025-09-22 01:46:06,505 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:07,452 INFO Connection check task start - -2025-09-22 01:46:07,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:07,452 INFO Out dated connection ,size=0 - -2025-09-22 01:46:07,452 INFO Connection check task end - -2025-09-22 01:46:09,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:10,453 INFO Connection check task start - -2025-09-22 01:46:10,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:10,454 INFO Out dated connection ,size=0 - -2025-09-22 01:46:10,454 INFO Connection check task end - -2025-09-22 01:46:12,506 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:13,454 INFO Connection check task start - -2025-09-22 01:46:13,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:13,454 INFO Out dated connection ,size=0 - -2025-09-22 01:46:13,454 INFO Connection check task end - -2025-09-22 01:46:15,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:16,455 INFO Connection check task start - -2025-09-22 01:46:16,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:16,455 INFO Out dated connection ,size=0 - -2025-09-22 01:46:16,455 INFO Connection check task end - -2025-09-22 01:46:18,507 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:19,455 INFO Connection check task start - -2025-09-22 01:46:19,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:19,455 INFO Out dated connection ,size=0 - -2025-09-22 01:46:19,455 INFO Connection check task end - -2025-09-22 01:46:21,508 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:22,456 INFO Connection check task start - -2025-09-22 01:46:22,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:22,457 INFO Out dated connection ,size=0 - -2025-09-22 01:46:22,457 INFO Connection check task end - -2025-09-22 01:46:24,509 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:25,457 INFO Connection check task start - -2025-09-22 01:46:25,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:25,457 INFO Out dated connection ,size=0 - -2025-09-22 01:46:25,457 INFO Connection check task end - -2025-09-22 01:46:27,510 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:28,458 INFO Connection check task start - -2025-09-22 01:46:28,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:28,459 INFO Out dated connection ,size=0 - -2025-09-22 01:46:28,459 INFO Connection check task end - -2025-09-22 01:46:30,511 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:31,459 INFO Connection check task start - -2025-09-22 01:46:31,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:31,460 INFO Out dated connection ,size=0 - -2025-09-22 01:46:31,460 INFO Connection check task end - -2025-09-22 01:46:33,512 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:34,460 INFO Connection check task start - -2025-09-22 01:46:34,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:34,460 INFO Out dated connection ,size=0 - -2025-09-22 01:46:34,460 INFO Connection check task end - -2025-09-22 01:46:36,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:37,461 INFO Connection check task start - -2025-09-22 01:46:37,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:37,461 INFO Out dated connection ,size=0 - -2025-09-22 01:46:37,461 INFO Connection check task end - -2025-09-22 01:46:39,514 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:40,463 INFO Connection check task start - -2025-09-22 01:46:40,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:40,463 INFO Out dated connection ,size=0 - -2025-09-22 01:46:40,463 INFO Connection check task end - -2025-09-22 01:46:42,515 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:43,464 INFO Connection check task start - -2025-09-22 01:46:43,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:43,464 INFO Out dated connection ,size=0 - -2025-09-22 01:46:43,464 INFO Connection check task end - -2025-09-22 01:46:45,516 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:46,465 INFO Connection check task start - -2025-09-22 01:46:46,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:46,465 INFO Out dated connection ,size=0 - -2025-09-22 01:46:46,465 INFO Connection check task end - -2025-09-22 01:46:48,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:49,466 INFO Connection check task start - -2025-09-22 01:46:49,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:49,466 INFO Out dated connection ,size=0 - -2025-09-22 01:46:49,466 INFO Connection check task end - -2025-09-22 01:46:51,517 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:52,467 INFO Connection check task start - -2025-09-22 01:46:52,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:52,467 INFO Out dated connection ,size=0 - -2025-09-22 01:46:52,467 INFO Connection check task end - -2025-09-22 01:46:54,518 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:55,467 INFO Connection check task start - -2025-09-22 01:46:55,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:55,467 INFO Out dated connection ,size=0 - -2025-09-22 01:46:55,467 INFO Connection check task end - -2025-09-22 01:46:57,519 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:46:58,469 INFO Connection check task start - -2025-09-22 01:46:58,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:46:58,469 INFO Out dated connection ,size=0 - -2025-09-22 01:46:58,469 INFO Connection check task end - -2025-09-22 01:47:00,520 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:01,470 INFO Connection check task start - -2025-09-22 01:47:01,471 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:01,471 INFO Out dated connection ,size=0 - -2025-09-22 01:47:01,471 INFO Connection check task end - -2025-09-22 01:47:03,521 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:04,472 INFO Connection check task start - -2025-09-22 01:47:04,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:04,472 INFO Out dated connection ,size=0 - -2025-09-22 01:47:04,472 INFO Connection check task end - -2025-09-22 01:47:06,522 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:07,472 INFO Connection check task start - -2025-09-22 01:47:07,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:07,473 INFO Out dated connection ,size=0 - -2025-09-22 01:47:07,473 INFO Connection check task end - -2025-09-22 01:47:09,523 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:10,473 INFO Connection check task start - -2025-09-22 01:47:10,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:10,474 INFO Out dated connection ,size=0 - -2025-09-22 01:47:10,474 INFO Connection check task end - -2025-09-22 01:47:12,524 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:13,475 INFO Connection check task start - -2025-09-22 01:47:13,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:13,475 INFO Out dated connection ,size=0 - -2025-09-22 01:47:13,475 INFO Connection check task end - -2025-09-22 01:47:15,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:16,477 INFO Connection check task start - -2025-09-22 01:47:16,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:16,477 INFO Out dated connection ,size=0 - -2025-09-22 01:47:16,477 INFO Connection check task end - -2025-09-22 01:47:18,525 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:19,478 INFO Connection check task start - -2025-09-22 01:47:19,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:19,478 INFO Out dated connection ,size=0 - -2025-09-22 01:47:19,478 INFO Connection check task end - -2025-09-22 01:47:21,526 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:22,479 INFO Connection check task start - -2025-09-22 01:47:22,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:22,479 INFO Out dated connection ,size=0 - -2025-09-22 01:47:22,479 INFO Connection check task end - -2025-09-22 01:47:24,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:25,479 INFO Connection check task start - -2025-09-22 01:47:25,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:25,479 INFO Out dated connection ,size=0 - -2025-09-22 01:47:25,479 INFO Connection check task end - -2025-09-22 01:47:27,527 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:28,480 INFO Connection check task start - -2025-09-22 01:47:28,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:28,480 INFO Out dated connection ,size=0 - -2025-09-22 01:47:28,480 INFO Connection check task end - -2025-09-22 01:47:30,528 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:31,480 INFO Connection check task start - -2025-09-22 01:47:31,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:31,481 INFO Out dated connection ,size=0 - -2025-09-22 01:47:31,481 INFO Connection check task end - -2025-09-22 01:47:33,529 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:34,482 INFO Connection check task start - -2025-09-22 01:47:34,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:34,482 INFO Out dated connection ,size=0 - -2025-09-22 01:47:34,482 INFO Connection check task end - -2025-09-22 01:47:36,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:37,483 INFO Connection check task start - -2025-09-22 01:47:37,483 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:37,483 INFO Out dated connection ,size=0 - -2025-09-22 01:47:37,483 INFO Connection check task end - -2025-09-22 01:47:39,530 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:40,484 INFO Connection check task start - -2025-09-22 01:47:40,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:40,484 INFO Out dated connection ,size=0 - -2025-09-22 01:47:40,484 INFO Connection check task end - -2025-09-22 01:47:42,531 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:43,484 INFO Connection check task start - -2025-09-22 01:47:43,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:43,484 INFO Out dated connection ,size=0 - -2025-09-22 01:47:43,484 INFO Connection check task end - -2025-09-22 01:47:45,532 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:46,485 INFO Connection check task start - -2025-09-22 01:47:46,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:46,486 INFO Out dated connection ,size=0 - -2025-09-22 01:47:46,486 INFO Connection check task end - -2025-09-22 01:47:48,534 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:49,487 INFO Connection check task start - -2025-09-22 01:47:49,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:49,487 INFO Out dated connection ,size=0 - -2025-09-22 01:47:49,487 INFO Connection check task end - -2025-09-22 01:47:51,535 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:52,488 INFO Connection check task start - -2025-09-22 01:47:52,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:52,488 INFO Out dated connection ,size=0 - -2025-09-22 01:47:52,488 INFO Connection check task end - -2025-09-22 01:47:54,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:55,489 INFO Connection check task start - -2025-09-22 01:47:55,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:55,489 INFO Out dated connection ,size=0 - -2025-09-22 01:47:55,489 INFO Connection check task end - -2025-09-22 01:47:57,536 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:47:58,491 INFO Connection check task start - -2025-09-22 01:47:58,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:47:58,491 INFO Out dated connection ,size=0 - -2025-09-22 01:47:58,491 INFO Connection check task end - -2025-09-22 01:48:00,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:01,491 INFO Connection check task start - -2025-09-22 01:48:01,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:01,491 INFO Out dated connection ,size=0 - -2025-09-22 01:48:01,491 INFO Connection check task end - -2025-09-22 01:48:03,537 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:04,492 INFO Connection check task start - -2025-09-22 01:48:04,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:04,493 INFO Out dated connection ,size=0 - -2025-09-22 01:48:04,493 INFO Connection check task end - -2025-09-22 01:48:06,538 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:07,493 INFO Connection check task start - -2025-09-22 01:48:07,494 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:07,494 INFO Out dated connection ,size=0 - -2025-09-22 01:48:07,494 INFO Connection check task end - -2025-09-22 01:48:09,539 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:10,495 INFO Connection check task start - -2025-09-22 01:48:10,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:10,495 INFO Out dated connection ,size=0 - -2025-09-22 01:48:10,495 INFO Connection check task end - -2025-09-22 01:48:12,540 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:13,496 INFO Connection check task start - -2025-09-22 01:48:13,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:13,496 INFO Out dated connection ,size=0 - -2025-09-22 01:48:13,496 INFO Connection check task end - -2025-09-22 01:48:15,541 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:16,497 INFO Connection check task start - -2025-09-22 01:48:16,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:16,497 INFO Out dated connection ,size=0 - -2025-09-22 01:48:16,497 INFO Connection check task end - -2025-09-22 01:48:18,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:19,497 INFO Connection check task start - -2025-09-22 01:48:19,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:19,497 INFO Out dated connection ,size=0 - -2025-09-22 01:48:19,498 INFO Connection check task end - -2025-09-22 01:48:21,543 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:22,498 INFO Connection check task start - -2025-09-22 01:48:22,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:22,498 INFO Out dated connection ,size=0 - -2025-09-22 01:48:22,498 INFO Connection check task end - -2025-09-22 01:48:24,544 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:25,498 INFO Connection check task start - -2025-09-22 01:48:25,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:25,499 INFO Out dated connection ,size=0 - -2025-09-22 01:48:25,499 INFO Connection check task end - -2025-09-22 01:48:27,545 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:28,499 INFO Connection check task start - -2025-09-22 01:48:28,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:28,499 INFO Out dated connection ,size=0 - -2025-09-22 01:48:28,499 INFO Connection check task end - -2025-09-22 01:48:30,546 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:31,500 INFO Connection check task start - -2025-09-22 01:48:31,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:31,500 INFO Out dated connection ,size=0 - -2025-09-22 01:48:31,501 INFO Connection check task end - -2025-09-22 01:48:33,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:34,502 INFO Connection check task start - -2025-09-22 01:48:34,502 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:34,502 INFO Out dated connection ,size=0 - -2025-09-22 01:48:34,502 INFO Connection check task end - -2025-09-22 01:48:36,547 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:37,503 INFO Connection check task start - -2025-09-22 01:48:37,504 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:37,504 INFO Out dated connection ,size=0 - -2025-09-22 01:48:37,504 INFO Connection check task end - -2025-09-22 01:48:39,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:40,505 INFO Connection check task start - -2025-09-22 01:48:40,505 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:40,505 INFO Out dated connection ,size=0 - -2025-09-22 01:48:40,505 INFO Connection check task end - -2025-09-22 01:48:42,549 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:43,505 INFO Connection check task start - -2025-09-22 01:48:43,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:43,506 INFO Out dated connection ,size=0 - -2025-09-22 01:48:43,506 INFO Connection check task end - -2025-09-22 01:48:45,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:46,506 INFO Connection check task start - -2025-09-22 01:48:46,506 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:46,506 INFO Out dated connection ,size=0 - -2025-09-22 01:48:46,507 INFO Connection check task end - -2025-09-22 01:48:48,551 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:49,507 INFO Connection check task start - -2025-09-22 01:48:49,507 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:49,508 INFO Out dated connection ,size=0 - -2025-09-22 01:48:49,508 INFO Connection check task end - -2025-09-22 01:48:51,552 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:52,508 INFO Connection check task start - -2025-09-22 01:48:52,508 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:52,508 INFO Out dated connection ,size=0 - -2025-09-22 01:48:52,509 INFO Connection check task end - -2025-09-22 01:48:54,553 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:55,509 INFO Connection check task start - -2025-09-22 01:48:55,509 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:55,509 INFO Out dated connection ,size=0 - -2025-09-22 01:48:55,509 INFO Connection check task end - -2025-09-22 01:48:57,554 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:48:58,510 INFO Connection check task start - -2025-09-22 01:48:58,510 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:48:58,510 INFO Out dated connection ,size=0 - -2025-09-22 01:48:58,510 INFO Connection check task end - -2025-09-22 01:49:00,555 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:01,511 INFO Connection check task start - -2025-09-22 01:49:01,511 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:01,511 INFO Out dated connection ,size=0 - -2025-09-22 01:49:01,512 INFO Connection check task end - -2025-09-22 01:49:03,556 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:04,512 INFO Connection check task start - -2025-09-22 01:49:04,512 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:04,512 INFO Out dated connection ,size=0 - -2025-09-22 01:49:04,512 INFO Connection check task end - -2025-09-22 01:49:06,557 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:07,513 INFO Connection check task start - -2025-09-22 01:49:07,513 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:07,513 INFO Out dated connection ,size=0 - -2025-09-22 01:49:07,513 INFO Connection check task end - -2025-09-22 01:49:09,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:10,514 INFO Connection check task start - -2025-09-22 01:49:10,514 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:10,514 INFO Out dated connection ,size=0 - -2025-09-22 01:49:10,514 INFO Connection check task end - -2025-09-22 01:49:12,559 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:13,516 INFO Connection check task start - -2025-09-22 01:49:13,516 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:13,516 INFO Out dated connection ,size=0 - -2025-09-22 01:49:13,516 INFO Connection check task end - -2025-09-22 01:49:15,560 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:16,517 INFO Connection check task start - -2025-09-22 01:49:16,518 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:16,518 INFO Out dated connection ,size=0 - -2025-09-22 01:49:16,518 INFO Connection check task end - -2025-09-22 01:49:18,561 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:19,519 INFO Connection check task start - -2025-09-22 01:49:19,519 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:19,519 INFO Out dated connection ,size=0 - -2025-09-22 01:49:19,519 INFO Connection check task end - -2025-09-22 01:49:21,562 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:22,520 INFO Connection check task start - -2025-09-22 01:49:22,520 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:22,520 INFO Out dated connection ,size=0 - -2025-09-22 01:49:22,520 INFO Connection check task end - -2025-09-22 01:49:24,563 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:25,521 INFO Connection check task start - -2025-09-22 01:49:25,521 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:25,521 INFO Out dated connection ,size=0 - -2025-09-22 01:49:25,521 INFO Connection check task end - -2025-09-22 01:49:27,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:28,522 INFO Connection check task start - -2025-09-22 01:49:28,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:28,522 INFO Out dated connection ,size=0 - -2025-09-22 01:49:28,522 INFO Connection check task end - -2025-09-22 01:49:30,564 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:31,522 INFO Connection check task start - -2025-09-22 01:49:31,522 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:31,522 INFO Out dated connection ,size=0 - -2025-09-22 01:49:31,523 INFO Connection check task end - -2025-09-22 01:49:33,565 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:34,523 INFO Connection check task start - -2025-09-22 01:49:34,523 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:34,523 INFO Out dated connection ,size=0 - -2025-09-22 01:49:34,523 INFO Connection check task end - -2025-09-22 01:49:36,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:37,524 INFO Connection check task start - -2025-09-22 01:49:37,524 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:37,524 INFO Out dated connection ,size=0 - -2025-09-22 01:49:37,525 INFO Connection check task end - -2025-09-22 01:49:39,566 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:40,525 INFO Connection check task start - -2025-09-22 01:49:40,525 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:40,525 INFO Out dated connection ,size=0 - -2025-09-22 01:49:40,525 INFO Connection check task end - -2025-09-22 01:49:42,567 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:43,526 INFO Connection check task start - -2025-09-22 01:49:43,526 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:43,526 INFO Out dated connection ,size=0 - -2025-09-22 01:49:43,526 INFO Connection check task end - -2025-09-22 01:49:45,569 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:46,528 INFO Connection check task start - -2025-09-22 01:49:46,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:46,528 INFO Out dated connection ,size=0 - -2025-09-22 01:49:46,528 INFO Connection check task end - -2025-09-22 01:49:48,570 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:49,528 INFO Connection check task start - -2025-09-22 01:49:49,528 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:49,528 INFO Out dated connection ,size=0 - -2025-09-22 01:49:49,528 INFO Connection check task end - -2025-09-22 01:49:51,571 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:52,529 INFO Connection check task start - -2025-09-22 01:49:52,529 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:52,530 INFO Out dated connection ,size=0 - -2025-09-22 01:49:52,530 INFO Connection check task end - -2025-09-22 01:49:54,572 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:49:55,530 INFO Connection check task start - -2025-09-22 01:49:55,530 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:49:55,530 INFO Out dated connection ,size=0 - -2025-09-22 01:49:55,530 INFO Connection check task end - -2025-09-22 01:50:08,703 INFO Fail to find connection runtime ejector for name nacos,use default - -2025-09-22 01:50:09,706 INFO Connection check task start - -2025-09-22 01:50:09,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:09,706 INFO Out dated connection ,size=0 - -2025-09-22 01:50:09,707 INFO Connection check task end - -2025-09-22 01:50:11,776 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:12,718 INFO Connection check task start - -2025-09-22 01:50:12,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:12,718 INFO Out dated connection ,size=0 - -2025-09-22 01:50:12,718 INFO Connection check task end - -2025-09-22 01:50:14,781 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:15,719 INFO Connection check task start - -2025-09-22 01:50:15,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:15,719 INFO Out dated connection ,size=0 - -2025-09-22 01:50:15,719 INFO Connection check task end - -2025-09-22 01:50:17,785 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:18,720 INFO Connection check task start - -2025-09-22 01:50:18,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:18,720 INFO Out dated connection ,size=0 - -2025-09-22 01:50:18,721 INFO Connection check task end - -2025-09-22 01:50:20,786 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:21,721 INFO Connection check task start - -2025-09-22 01:50:21,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:21,721 INFO Out dated connection ,size=0 - -2025-09-22 01:50:21,721 INFO Connection check task end - -2025-09-22 01:50:23,787 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:24,722 INFO Connection check task start - -2025-09-22 01:50:24,722 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:24,722 INFO Out dated connection ,size=0 - -2025-09-22 01:50:24,722 INFO Connection check task end - -2025-09-22 01:50:26,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:27,724 INFO Connection check task start - -2025-09-22 01:50:27,724 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:27,724 INFO Out dated connection ,size=0 - -2025-09-22 01:50:27,724 INFO Connection check task end - -2025-09-22 01:50:29,789 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:30,725 INFO Connection check task start - -2025-09-22 01:50:30,726 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:30,726 INFO Out dated connection ,size=0 - -2025-09-22 01:50:30,726 INFO Connection check task end - -2025-09-22 01:50:32,790 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:33,727 INFO Connection check task start - -2025-09-22 01:50:33,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:33,728 INFO Out dated connection ,size=0 - -2025-09-22 01:50:33,728 INFO Connection check task end - -2025-09-22 01:50:35,791 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:36,728 INFO Connection check task start - -2025-09-22 01:50:36,728 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:36,729 INFO Out dated connection ,size=0 - -2025-09-22 01:50:36,729 INFO Connection check task end - -2025-09-22 01:50:38,792 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:39,729 INFO Connection check task start - -2025-09-22 01:50:39,729 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:39,729 INFO Out dated connection ,size=0 - -2025-09-22 01:50:39,729 INFO Connection check task end - -2025-09-22 01:50:41,794 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:42,730 INFO Connection check task start - -2025-09-22 01:50:42,730 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:42,730 INFO Out dated connection ,size=0 - -2025-09-22 01:50:42,730 INFO Connection check task end - -2025-09-22 01:50:44,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:45,731 INFO Connection check task start - -2025-09-22 01:50:45,731 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:45,731 INFO Out dated connection ,size=0 - -2025-09-22 01:50:45,731 INFO Connection check task end - -2025-09-22 01:50:47,795 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:48,732 INFO Connection check task start - -2025-09-22 01:50:48,732 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:48,732 INFO Out dated connection ,size=0 - -2025-09-22 01:50:48,732 INFO Connection check task end - -2025-09-22 01:50:50,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:51,733 INFO Connection check task start - -2025-09-22 01:50:51,733 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:51,733 INFO Out dated connection ,size=0 - -2025-09-22 01:50:51,733 INFO Connection check task end - -2025-09-22 01:50:53,797 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:54,734 INFO Connection check task start - -2025-09-22 01:50:54,735 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:54,735 INFO Out dated connection ,size=0 - -2025-09-22 01:50:54,735 INFO Connection check task end - -2025-09-22 01:50:56,798 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:50:57,736 INFO Connection check task start - -2025-09-22 01:50:57,736 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:50:57,737 INFO Out dated connection ,size=0 - -2025-09-22 01:50:57,737 INFO Connection check task end - -2025-09-22 01:50:59,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:00,738 INFO Connection check task start - -2025-09-22 01:51:00,738 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:00,738 INFO Out dated connection ,size=0 - -2025-09-22 01:51:00,739 INFO Connection check task end - -2025-09-22 01:51:02,799 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:03,739 INFO Connection check task start - -2025-09-22 01:51:03,739 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:03,739 INFO Out dated connection ,size=0 - -2025-09-22 01:51:03,739 INFO Connection check task end - -2025-09-22 01:51:05,800 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:06,739 INFO Connection check task start - -2025-09-22 01:51:06,740 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:06,740 INFO Out dated connection ,size=0 - -2025-09-22 01:51:06,740 INFO Connection check task end - -2025-09-22 01:51:08,801 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:09,741 INFO Connection check task start - -2025-09-22 01:51:09,741 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:09,741 INFO Out dated connection ,size=0 - -2025-09-22 01:51:09,742 INFO Connection check task end - -2025-09-22 01:51:11,802 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:12,742 INFO Connection check task start - -2025-09-22 01:51:12,742 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:12,743 INFO Out dated connection ,size=0 - -2025-09-22 01:51:12,743 INFO Connection check task end - -2025-09-22 01:51:14,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:15,743 INFO Connection check task start - -2025-09-22 01:51:15,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:15,744 INFO Out dated connection ,size=0 - -2025-09-22 01:51:15,744 INFO Connection check task end - -2025-09-22 01:51:17,803 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:18,744 INFO Connection check task start - -2025-09-22 01:51:18,744 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:18,744 INFO Out dated connection ,size=0 - -2025-09-22 01:51:18,745 INFO Connection check task end - -2025-09-22 01:51:20,804 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:21,745 INFO Connection check task start - -2025-09-22 01:51:21,745 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:21,745 INFO Out dated connection ,size=0 - -2025-09-22 01:51:21,745 INFO Connection check task end - -2025-09-22 01:51:23,805 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:24,746 INFO Connection check task start - -2025-09-22 01:51:24,746 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:24,746 INFO Out dated connection ,size=0 - -2025-09-22 01:51:24,746 INFO Connection check task end - -2025-09-22 01:51:26,806 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:27,747 INFO Connection check task start - -2025-09-22 01:51:27,747 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:27,747 INFO Out dated connection ,size=0 - -2025-09-22 01:51:27,747 INFO Connection check task end - -2025-09-22 01:51:29,808 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:30,748 INFO Connection check task start - -2025-09-22 01:51:30,748 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:30,748 INFO Out dated connection ,size=0 - -2025-09-22 01:51:30,748 INFO Connection check task end - -2025-09-22 01:51:32,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:33,749 INFO Connection check task start - -2025-09-22 01:51:33,749 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:33,750 INFO Out dated connection ,size=0 - -2025-09-22 01:51:33,750 INFO Connection check task end - -2025-09-22 01:51:35,809 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:36,750 INFO Connection check task start - -2025-09-22 01:51:36,751 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:36,751 INFO Out dated connection ,size=0 - -2025-09-22 01:51:36,751 INFO Connection check task end - -2025-09-22 01:51:38,810 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:39,752 INFO Connection check task start - -2025-09-22 01:51:39,752 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:39,752 INFO Out dated connection ,size=0 - -2025-09-22 01:51:39,752 INFO Connection check task end - -2025-09-22 01:51:41,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:42,752 INFO Connection check task start - -2025-09-22 01:51:42,753 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:42,753 INFO Out dated connection ,size=0 - -2025-09-22 01:51:42,753 INFO Connection check task end - -2025-09-22 01:51:44,811 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:45,754 INFO Connection check task start - -2025-09-22 01:51:45,754 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:45,754 INFO Out dated connection ,size=0 - -2025-09-22 01:51:45,754 INFO Connection check task end - -2025-09-22 01:51:47,812 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:48,755 INFO Connection check task start - -2025-09-22 01:51:48,755 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:48,756 INFO Out dated connection ,size=0 - -2025-09-22 01:51:48,756 INFO Connection check task end - -2025-09-22 01:51:50,813 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:51,756 INFO Connection check task start - -2025-09-22 01:51:51,756 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:51,756 INFO Out dated connection ,size=0 - -2025-09-22 01:51:51,756 INFO Connection check task end - -2025-09-22 01:51:53,814 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:54,757 INFO Connection check task start - -2025-09-22 01:51:54,757 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:54,757 INFO Out dated connection ,size=0 - -2025-09-22 01:51:54,757 INFO Connection check task end - -2025-09-22 01:51:56,815 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:51:57,758 INFO Connection check task start - -2025-09-22 01:51:57,758 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:51:57,758 INFO Out dated connection ,size=0 - -2025-09-22 01:51:57,758 INFO Connection check task end - -2025-09-22 01:51:59,816 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:00,759 INFO Connection check task start - -2025-09-22 01:52:00,759 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:00,759 INFO Out dated connection ,size=0 - -2025-09-22 01:52:00,760 INFO Connection check task end - -2025-09-22 01:52:02,817 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:03,761 INFO Connection check task start - -2025-09-22 01:52:03,761 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:03,761 INFO Out dated connection ,size=0 - -2025-09-22 01:52:03,761 INFO Connection check task end - -2025-09-22 01:52:05,818 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:06,761 INFO Connection check task start - -2025-09-22 01:52:06,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:06,762 INFO Out dated connection ,size=0 - -2025-09-22 01:52:06,762 INFO Connection check task end - -2025-09-22 01:52:08,819 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:09,762 INFO Connection check task start - -2025-09-22 01:52:09,762 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:09,763 INFO Out dated connection ,size=0 - -2025-09-22 01:52:09,763 INFO Connection check task end - -2025-09-22 01:52:11,820 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:12,764 INFO Connection check task start - -2025-09-22 01:52:12,764 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:12,764 INFO Out dated connection ,size=0 - -2025-09-22 01:52:12,764 INFO Connection check task end - -2025-09-22 01:52:14,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:15,765 INFO Connection check task start - -2025-09-22 01:52:15,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:15,765 INFO Out dated connection ,size=0 - -2025-09-22 01:52:15,765 INFO Connection check task end - -2025-09-22 01:52:17,821 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:18,765 INFO Connection check task start - -2025-09-22 01:52:18,765 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:18,765 INFO Out dated connection ,size=0 - -2025-09-22 01:52:18,766 INFO Connection check task end - -2025-09-22 01:52:20,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:21,766 INFO Connection check task start - -2025-09-22 01:52:21,766 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:21,766 INFO Out dated connection ,size=0 - -2025-09-22 01:52:21,767 INFO Connection check task end - -2025-09-22 01:52:23,822 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:24,767 INFO Connection check task start - -2025-09-22 01:52:24,768 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:24,768 INFO Out dated connection ,size=0 - -2025-09-22 01:52:24,768 INFO Connection check task end - -2025-09-22 01:52:26,823 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:27,769 INFO Connection check task start - -2025-09-22 01:52:27,769 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:27,769 INFO Out dated connection ,size=0 - -2025-09-22 01:52:27,769 INFO Connection check task end - -2025-09-22 01:52:29,824 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:30,771 INFO Connection check task start - -2025-09-22 01:52:30,771 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:30,771 INFO Out dated connection ,size=0 - -2025-09-22 01:52:30,771 INFO Connection check task end - -2025-09-22 01:52:32,825 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:33,772 INFO Connection check task start - -2025-09-22 01:52:33,772 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:33,772 INFO Out dated connection ,size=0 - -2025-09-22 01:52:33,772 INFO Connection check task end - -2025-09-22 01:52:35,826 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:36,773 INFO Connection check task start - -2025-09-22 01:52:36,773 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:36,773 INFO Out dated connection ,size=0 - -2025-09-22 01:52:36,773 INFO Connection check task end - -2025-09-22 01:52:38,827 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:39,774 INFO Connection check task start - -2025-09-22 01:52:39,774 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:39,774 INFO Out dated connection ,size=0 - -2025-09-22 01:52:39,774 INFO Connection check task end - -2025-09-22 01:52:41,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:42,776 INFO Connection check task start - -2025-09-22 01:52:42,776 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:42,776 INFO Out dated connection ,size=0 - -2025-09-22 01:52:42,776 INFO Connection check task end - -2025-09-22 01:52:44,828 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:45,777 INFO Connection check task start - -2025-09-22 01:52:45,777 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:45,777 INFO Out dated connection ,size=0 - -2025-09-22 01:52:45,777 INFO Connection check task end - -2025-09-22 01:52:47,829 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:48,778 INFO Connection check task start - -2025-09-22 01:52:48,778 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:48,778 INFO Out dated connection ,size=0 - -2025-09-22 01:52:48,778 INFO Connection check task end - -2025-09-22 01:52:50,830 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:51,778 INFO Connection check task start - -2025-09-22 01:52:51,779 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:51,779 INFO Out dated connection ,size=0 - -2025-09-22 01:52:51,779 INFO Connection check task end - -2025-09-22 01:52:53,831 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:54,780 INFO Connection check task start - -2025-09-22 01:52:54,780 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:54,780 INFO Out dated connection ,size=0 - -2025-09-22 01:52:54,780 INFO Connection check task end - -2025-09-22 01:52:56,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:52:57,781 INFO Connection check task start - -2025-09-22 01:52:57,781 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:52:57,781 INFO Out dated connection ,size=0 - -2025-09-22 01:52:57,781 INFO Connection check task end - -2025-09-22 01:52:59,833 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:00,782 INFO Connection check task start - -2025-09-22 01:53:00,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:00,783 INFO Out dated connection ,size=0 - -2025-09-22 01:53:00,783 INFO Connection check task end - -2025-09-22 01:53:02,834 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:03,783 INFO Connection check task start - -2025-09-22 01:53:03,783 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:03,783 INFO Out dated connection ,size=0 - -2025-09-22 01:53:03,783 INFO Connection check task end - -2025-09-22 01:53:05,835 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:06,784 INFO Connection check task start - -2025-09-22 01:53:06,784 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:06,785 INFO Out dated connection ,size=0 - -2025-09-22 01:53:06,785 INFO Connection check task end - -2025-09-22 01:53:08,837 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:09,785 INFO Connection check task start - -2025-09-22 01:53:09,785 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:09,785 INFO Out dated connection ,size=0 - -2025-09-22 01:53:09,785 INFO Connection check task end - -2025-09-22 01:53:11,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:12,786 INFO Connection check task start - -2025-09-22 01:53:12,786 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:12,786 INFO Out dated connection ,size=0 - -2025-09-22 01:53:12,786 INFO Connection check task end - -2025-09-22 01:53:14,838 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:15,787 INFO Connection check task start - -2025-09-22 01:53:15,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:15,788 INFO Out dated connection ,size=0 - -2025-09-22 01:53:15,788 INFO Connection check task end - -2025-09-22 01:53:17,839 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:18,788 INFO Connection check task start - -2025-09-22 01:53:18,788 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:18,788 INFO Out dated connection ,size=0 - -2025-09-22 01:53:18,789 INFO Connection check task end - -2025-09-22 01:53:20,840 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:21,789 INFO Connection check task start - -2025-09-22 01:53:21,789 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:21,789 INFO Out dated connection ,size=0 - -2025-09-22 01:53:21,789 INFO Connection check task end - -2025-09-22 01:53:23,841 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:24,789 INFO Connection check task start - -2025-09-22 01:53:24,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:24,790 INFO Out dated connection ,size=0 - -2025-09-22 01:53:24,790 INFO Connection check task end - -2025-09-22 01:53:26,842 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:27,790 INFO Connection check task start - -2025-09-22 01:53:27,790 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:27,790 INFO Out dated connection ,size=0 - -2025-09-22 01:53:27,790 INFO Connection check task end - -2025-09-22 01:53:29,843 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:30,791 INFO Connection check task start - -2025-09-22 01:53:30,791 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:30,791 INFO Out dated connection ,size=0 - -2025-09-22 01:53:30,792 INFO Connection check task end - -2025-09-22 01:53:32,844 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:33,792 INFO Connection check task start - -2025-09-22 01:53:33,811 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:33,811 INFO Out dated connection ,size=0 - -2025-09-22 01:53:33,811 INFO Connection check task end - -2025-09-22 01:53:35,845 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:36,812 INFO Connection check task start - -2025-09-22 01:53:36,813 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:36,813 INFO Out dated connection ,size=0 - -2025-09-22 01:53:36,813 INFO Connection check task end - -2025-09-22 01:53:38,847 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:39,814 INFO Connection check task start - -2025-09-22 01:53:39,814 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:39,814 INFO Out dated connection ,size=0 - -2025-09-22 01:53:39,814 INFO Connection check task end - -2025-09-22 01:53:41,848 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:42,814 INFO Connection check task start - -2025-09-22 01:53:42,815 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:42,815 INFO Out dated connection ,size=0 - -2025-09-22 01:53:42,815 INFO Connection check task end - -2025-09-22 01:53:44,849 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:45,815 INFO Connection check task start - -2025-09-22 01:53:45,816 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:45,816 INFO Out dated connection ,size=0 - -2025-09-22 01:53:45,816 INFO Connection check task end - -2025-09-22 01:53:47,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:48,817 INFO Connection check task start - -2025-09-22 01:53:48,817 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:48,817 INFO Out dated connection ,size=0 - -2025-09-22 01:53:48,817 INFO Connection check task end - -2025-09-22 01:53:50,850 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:51,818 INFO Connection check task start - -2025-09-22 01:53:51,818 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:51,818 INFO Out dated connection ,size=0 - -2025-09-22 01:53:51,818 INFO Connection check task end - -2025-09-22 01:53:53,852 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:54,819 INFO Connection check task start - -2025-09-22 01:53:54,820 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:54,820 INFO Out dated connection ,size=0 - -2025-09-22 01:53:54,820 INFO Connection check task end - -2025-09-22 01:53:56,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:53:57,821 INFO Connection check task start - -2025-09-22 01:53:57,821 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:53:57,821 INFO Out dated connection ,size=0 - -2025-09-22 01:53:57,821 INFO Connection check task end - -2025-09-22 01:53:59,854 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:00,821 INFO Connection check task start - -2025-09-22 01:54:00,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:00,822 INFO Out dated connection ,size=0 - -2025-09-22 01:54:00,822 INFO Connection check task end - -2025-09-22 01:54:02,855 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:03,822 INFO Connection check task start - -2025-09-22 01:54:03,822 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:03,822 INFO Out dated connection ,size=0 - -2025-09-22 01:54:03,822 INFO Connection check task end - -2025-09-22 01:54:05,856 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:06,823 INFO Connection check task start - -2025-09-22 01:54:06,823 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:06,823 INFO Out dated connection ,size=0 - -2025-09-22 01:54:06,823 INFO Connection check task end - -2025-09-22 01:54:08,857 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:09,824 INFO Connection check task start - -2025-09-22 01:54:09,824 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:09,824 INFO Out dated connection ,size=0 - -2025-09-22 01:54:09,824 INFO Connection check task end - -2025-09-22 01:54:11,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:12,825 INFO Connection check task start - -2025-09-22 01:54:12,825 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:12,825 INFO Out dated connection ,size=0 - -2025-09-22 01:54:12,825 INFO Connection check task end - -2025-09-22 01:54:14,858 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:15,826 INFO Connection check task start - -2025-09-22 01:54:15,826 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:15,826 INFO Out dated connection ,size=0 - -2025-09-22 01:54:15,826 INFO Connection check task end - -2025-09-22 01:54:17,860 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:18,827 INFO Connection check task start - -2025-09-22 01:54:18,827 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:18,828 INFO Out dated connection ,size=0 - -2025-09-22 01:54:18,828 INFO Connection check task end - -2025-09-22 01:54:20,861 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:21,829 INFO Connection check task start - -2025-09-22 01:54:21,829 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:21,829 INFO Out dated connection ,size=0 - -2025-09-22 01:54:21,829 INFO Connection check task end - -2025-09-22 01:54:23,862 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:24,830 INFO Connection check task start - -2025-09-22 01:54:24,830 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:24,830 INFO Out dated connection ,size=0 - -2025-09-22 01:54:24,831 INFO Connection check task end - -2025-09-22 01:54:26,863 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:27,831 INFO Connection check task start - -2025-09-22 01:54:27,831 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:27,831 INFO Out dated connection ,size=0 - -2025-09-22 01:54:27,831 INFO Connection check task end - -2025-09-22 01:54:29,864 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:30,831 INFO Connection check task start - -2025-09-22 01:54:30,832 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:30,832 INFO Out dated connection ,size=0 - -2025-09-22 01:54:30,832 INFO Connection check task end - -2025-09-22 01:54:32,866 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:33,832 INFO Connection check task start - -2025-09-22 01:54:33,833 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:33,833 INFO Out dated connection ,size=0 - -2025-09-22 01:54:33,833 INFO Connection check task end - -2025-09-22 01:54:35,867 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:36,833 INFO Connection check task start - -2025-09-22 01:54:36,834 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:36,834 INFO Out dated connection ,size=0 - -2025-09-22 01:54:36,834 INFO Connection check task end - -2025-09-22 01:54:38,868 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:39,835 INFO Connection check task start - -2025-09-22 01:54:39,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:39,835 INFO Out dated connection ,size=0 - -2025-09-22 01:54:39,835 INFO Connection check task end - -2025-09-22 01:54:41,869 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:42,835 INFO Connection check task start - -2025-09-22 01:54:42,835 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:42,835 INFO Out dated connection ,size=0 - -2025-09-22 01:54:42,835 INFO Connection check task end - -2025-09-22 01:54:44,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:45,836 INFO Connection check task start - -2025-09-22 01:54:45,836 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:45,836 INFO Out dated connection ,size=0 - -2025-09-22 01:54:45,836 INFO Connection check task end - -2025-09-22 01:54:47,871 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:48,837 INFO Connection check task start - -2025-09-22 01:54:48,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:48,837 INFO Out dated connection ,size=0 - -2025-09-22 01:54:48,837 INFO Connection check task end - -2025-09-22 01:54:50,872 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:51,837 INFO Connection check task start - -2025-09-22 01:54:51,837 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:51,838 INFO Out dated connection ,size=0 - -2025-09-22 01:54:51,838 INFO Connection check task end - -2025-09-22 01:54:53,873 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:54,838 INFO Connection check task start - -2025-09-22 01:54:54,839 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:54,839 INFO Out dated connection ,size=0 - -2025-09-22 01:54:54,839 INFO Connection check task end - -2025-09-22 01:54:56,874 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:54:57,840 INFO Connection check task start - -2025-09-22 01:54:57,840 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:54:57,840 INFO Out dated connection ,size=0 - -2025-09-22 01:54:57,840 INFO Connection check task end - -2025-09-22 01:54:59,875 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:00,841 INFO Connection check task start - -2025-09-22 01:55:00,841 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:00,841 INFO Out dated connection ,size=0 - -2025-09-22 01:55:00,841 INFO Connection check task end - -2025-09-22 01:55:02,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:03,842 INFO Connection check task start - -2025-09-22 01:55:03,842 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:03,842 INFO Out dated connection ,size=0 - -2025-09-22 01:55:03,842 INFO Connection check task end - -2025-09-22 01:55:05,876 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:06,843 INFO Connection check task start - -2025-09-22 01:55:06,843 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:06,843 INFO Out dated connection ,size=0 - -2025-09-22 01:55:06,843 INFO Connection check task end - -2025-09-22 01:55:08,877 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:09,845 INFO Connection check task start - -2025-09-22 01:55:09,845 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:09,845 INFO Out dated connection ,size=0 - -2025-09-22 01:55:09,845 INFO Connection check task end - -2025-09-22 01:55:11,878 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:12,846 INFO Connection check task start - -2025-09-22 01:55:12,846 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:12,847 INFO Out dated connection ,size=0 - -2025-09-22 01:55:12,847 INFO Connection check task end - -2025-09-22 01:55:14,879 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:15,847 INFO Connection check task start - -2025-09-22 01:55:15,847 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:15,848 INFO Out dated connection ,size=0 - -2025-09-22 01:55:15,848 INFO Connection check task end - -2025-09-22 01:55:17,880 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:18,849 INFO Connection check task start - -2025-09-22 01:55:18,849 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:18,849 INFO Out dated connection ,size=0 - -2025-09-22 01:55:18,849 INFO Connection check task end - -2025-09-22 01:55:20,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:21,850 INFO Connection check task start - -2025-09-22 01:55:21,850 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:21,850 INFO Out dated connection ,size=0 - -2025-09-22 01:55:21,850 INFO Connection check task end - -2025-09-22 01:55:23,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:24,851 INFO Connection check task start - -2025-09-22 01:55:24,851 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:24,851 INFO Out dated connection ,size=0 - -2025-09-22 01:55:24,851 INFO Connection check task end - -2025-09-22 01:55:26,881 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:27,852 INFO Connection check task start - -2025-09-22 01:55:27,852 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:27,852 INFO Out dated connection ,size=0 - -2025-09-22 01:55:27,852 INFO Connection check task end - -2025-09-22 01:55:29,882 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:30,854 INFO Connection check task start - -2025-09-22 01:55:30,854 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:30,854 INFO Out dated connection ,size=0 - -2025-09-22 01:55:30,854 INFO Connection check task end - -2025-09-22 01:55:32,883 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:33,855 INFO Connection check task start - -2025-09-22 01:55:33,855 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:33,855 INFO Out dated connection ,size=0 - -2025-09-22 01:55:33,855 INFO Connection check task end - -2025-09-22 01:55:35,884 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:36,856 INFO Connection check task start - -2025-09-22 01:55:36,856 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:36,856 INFO Out dated connection ,size=0 - -2025-09-22 01:55:36,856 INFO Connection check task end - -2025-09-22 01:55:38,885 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:39,858 INFO Connection check task start - -2025-09-22 01:55:39,858 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:39,858 INFO Out dated connection ,size=0 - -2025-09-22 01:55:39,858 INFO Connection check task end - -2025-09-22 01:55:41,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:42,859 INFO Connection check task start - -2025-09-22 01:55:42,860 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:42,860 INFO Out dated connection ,size=0 - -2025-09-22 01:55:42,860 INFO Connection check task end - -2025-09-22 01:55:44,886 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:45,861 INFO Connection check task start - -2025-09-22 01:55:45,861 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:45,861 INFO Out dated connection ,size=0 - -2025-09-22 01:55:45,861 INFO Connection check task end - -2025-09-22 01:55:47,887 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:48,863 INFO Connection check task start - -2025-09-22 01:55:48,863 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:48,863 INFO Out dated connection ,size=0 - -2025-09-22 01:55:48,863 INFO Connection check task end - -2025-09-22 01:55:50,888 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:51,864 INFO Connection check task start - -2025-09-22 01:55:51,864 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:51,864 INFO Out dated connection ,size=0 - -2025-09-22 01:55:51,864 INFO Connection check task end - -2025-09-22 01:55:53,890 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:54,865 INFO Connection check task start - -2025-09-22 01:55:54,865 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:54,865 INFO Out dated connection ,size=0 - -2025-09-22 01:55:54,865 INFO Connection check task end - -2025-09-22 01:55:56,891 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:55:57,865 INFO Connection check task start - -2025-09-22 01:55:57,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:55:57,866 INFO Out dated connection ,size=0 - -2025-09-22 01:55:57,866 INFO Connection check task end - -2025-09-22 01:55:59,892 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:00,866 INFO Connection check task start - -2025-09-22 01:56:00,866 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:00,866 INFO Out dated connection ,size=0 - -2025-09-22 01:56:00,867 INFO Connection check task end - -2025-09-22 01:56:02,893 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:03,867 INFO Connection check task start - -2025-09-22 01:56:03,868 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:03,868 INFO Out dated connection ,size=0 - -2025-09-22 01:56:03,868 INFO Connection check task end - -2025-09-22 01:56:05,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:06,869 INFO Connection check task start - -2025-09-22 01:56:06,869 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:06,869 INFO Out dated connection ,size=0 - -2025-09-22 01:56:06,869 INFO Connection check task end - -2025-09-22 01:56:08,894 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:09,870 INFO Connection check task start - -2025-09-22 01:56:09,870 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:09,870 INFO Out dated connection ,size=0 - -2025-09-22 01:56:09,870 INFO Connection check task end - -2025-09-22 01:56:11,895 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:12,871 INFO Connection check task start - -2025-09-22 01:56:12,871 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:12,871 INFO Out dated connection ,size=0 - -2025-09-22 01:56:12,871 INFO Connection check task end - -2025-09-22 01:56:14,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:15,871 INFO Connection check task start - -2025-09-22 01:56:15,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:15,872 INFO Out dated connection ,size=0 - -2025-09-22 01:56:15,872 INFO Connection check task end - -2025-09-22 01:56:17,896 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:18,872 INFO Connection check task start - -2025-09-22 01:56:18,872 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:18,872 INFO Out dated connection ,size=0 - -2025-09-22 01:56:18,872 INFO Connection check task end - -2025-09-22 01:56:20,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:21,873 INFO Connection check task start - -2025-09-22 01:56:21,873 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:21,874 INFO Out dated connection ,size=0 - -2025-09-22 01:56:21,874 INFO Connection check task end - -2025-09-22 01:56:23,897 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:24,874 INFO Connection check task start - -2025-09-22 01:56:24,874 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:24,874 INFO Out dated connection ,size=0 - -2025-09-22 01:56:24,874 INFO Connection check task end - -2025-09-22 01:56:26,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:27,876 INFO Connection check task start - -2025-09-22 01:56:27,876 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:27,876 INFO Out dated connection ,size=0 - -2025-09-22 01:56:27,876 INFO Connection check task end - -2025-09-22 01:56:29,898 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:30,876 INFO Connection check task start - -2025-09-22 01:56:30,877 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:30,877 INFO Out dated connection ,size=0 - -2025-09-22 01:56:30,877 INFO Connection check task end - -2025-09-22 01:56:32,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:33,879 INFO Connection check task start - -2025-09-22 01:56:33,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:33,879 INFO Out dated connection ,size=0 - -2025-09-22 01:56:33,879 INFO Connection check task end - -2025-09-22 01:56:35,899 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:36,879 INFO Connection check task start - -2025-09-22 01:56:36,879 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:36,880 INFO Out dated connection ,size=0 - -2025-09-22 01:56:36,880 INFO Connection check task end - -2025-09-22 01:56:38,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:39,880 INFO Connection check task start - -2025-09-22 01:56:39,880 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:39,880 INFO Out dated connection ,size=0 - -2025-09-22 01:56:39,880 INFO Connection check task end - -2025-09-22 01:56:41,900 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:42,881 INFO Connection check task start - -2025-09-22 01:56:42,881 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:42,881 INFO Out dated connection ,size=0 - -2025-09-22 01:56:42,881 INFO Connection check task end - -2025-09-22 01:56:44,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:45,882 INFO Connection check task start - -2025-09-22 01:56:45,882 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:45,882 INFO Out dated connection ,size=0 - -2025-09-22 01:56:45,882 INFO Connection check task end - -2025-09-22 01:56:47,901 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:48,883 INFO Connection check task start - -2025-09-22 01:56:48,883 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:48,883 INFO Out dated connection ,size=0 - -2025-09-22 01:56:48,883 INFO Connection check task end - -2025-09-22 01:56:50,905 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:51,883 INFO Connection check task start - -2025-09-22 01:56:51,884 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:51,884 INFO Out dated connection ,size=0 - -2025-09-22 01:56:51,884 INFO Connection check task end - -2025-09-22 01:56:53,907 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:54,885 INFO Connection check task start - -2025-09-22 01:56:54,885 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:54,885 INFO Out dated connection ,size=0 - -2025-09-22 01:56:54,885 INFO Connection check task end - -2025-09-22 01:56:56,908 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:56:57,886 INFO Connection check task start - -2025-09-22 01:56:57,886 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:56:57,886 INFO Out dated connection ,size=0 - -2025-09-22 01:56:57,886 INFO Connection check task end - -2025-09-22 01:56:59,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:00,887 INFO Connection check task start - -2025-09-22 01:57:00,888 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:00,888 INFO Out dated connection ,size=0 - -2025-09-22 01:57:00,888 INFO Connection check task end - -2025-09-22 01:57:02,909 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:03,889 INFO Connection check task start - -2025-09-22 01:57:03,890 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:03,890 INFO Out dated connection ,size=0 - -2025-09-22 01:57:03,890 INFO Connection check task end - -2025-09-22 01:57:05,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:06,891 INFO Connection check task start - -2025-09-22 01:57:06,891 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:06,891 INFO Out dated connection ,size=0 - -2025-09-22 01:57:06,891 INFO Connection check task end - -2025-09-22 01:57:08,910 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:09,892 INFO Connection check task start - -2025-09-22 01:57:09,892 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:09,892 INFO Out dated connection ,size=0 - -2025-09-22 01:57:09,892 INFO Connection check task end - -2025-09-22 01:57:11,912 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:12,892 INFO Connection check task start - -2025-09-22 01:57:12,893 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:12,893 INFO Out dated connection ,size=0 - -2025-09-22 01:57:12,893 INFO Connection check task end - -2025-09-22 01:57:14,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:15,893 INFO Connection check task start - -2025-09-22 01:57:15,894 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:15,894 INFO Out dated connection ,size=0 - -2025-09-22 01:57:15,894 INFO Connection check task end - -2025-09-22 01:57:17,913 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:18,895 INFO Connection check task start - -2025-09-22 01:57:18,895 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:18,895 INFO Out dated connection ,size=0 - -2025-09-22 01:57:18,895 INFO Connection check task end - -2025-09-22 01:57:20,914 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:21,896 INFO Connection check task start - -2025-09-22 01:57:21,896 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:21,896 INFO Out dated connection ,size=0 - -2025-09-22 01:57:21,896 INFO Connection check task end - -2025-09-22 01:57:23,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:24,897 INFO Connection check task start - -2025-09-22 01:57:24,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:24,897 INFO Out dated connection ,size=0 - -2025-09-22 01:57:24,897 INFO Connection check task end - -2025-09-22 01:57:26,915 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:27,897 INFO Connection check task start - -2025-09-22 01:57:27,897 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:27,897 INFO Out dated connection ,size=0 - -2025-09-22 01:57:27,897 INFO Connection check task end - -2025-09-22 01:57:29,916 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:30,898 INFO Connection check task start - -2025-09-22 01:57:30,898 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:30,898 INFO Out dated connection ,size=0 - -2025-09-22 01:57:30,898 INFO Connection check task end - -2025-09-22 01:57:32,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:33,899 INFO Connection check task start - -2025-09-22 01:57:33,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:33,899 INFO Out dated connection ,size=0 - -2025-09-22 01:57:33,899 INFO Connection check task end - -2025-09-22 01:57:35,917 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:36,899 INFO Connection check task start - -2025-09-22 01:57:36,899 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:36,900 INFO Out dated connection ,size=0 - -2025-09-22 01:57:36,900 INFO Connection check task end - -2025-09-22 01:57:38,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:39,901 INFO Connection check task start - -2025-09-22 01:57:39,901 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:39,901 INFO Out dated connection ,size=0 - -2025-09-22 01:57:39,901 INFO Connection check task end - -2025-09-22 01:57:41,918 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:42,902 INFO Connection check task start - -2025-09-22 01:57:42,902 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:42,902 INFO Out dated connection ,size=0 - -2025-09-22 01:57:42,902 INFO Connection check task end - -2025-09-22 01:57:44,919 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:45,903 INFO Connection check task start - -2025-09-22 01:57:45,903 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:45,903 INFO Out dated connection ,size=0 - -2025-09-22 01:57:45,903 INFO Connection check task end - -2025-09-22 01:57:47,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:48,904 INFO Connection check task start - -2025-09-22 01:57:48,906 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:48,906 INFO Out dated connection ,size=0 - -2025-09-22 01:57:48,907 INFO Connection check task end - -2025-09-22 01:57:50,920 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:51,907 INFO Connection check task start - -2025-09-22 01:57:51,907 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:51,907 INFO Out dated connection ,size=0 - -2025-09-22 01:57:51,907 INFO Connection check task end - -2025-09-22 01:57:53,921 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:54,908 INFO Connection check task start - -2025-09-22 01:57:54,908 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:54,908 INFO Out dated connection ,size=0 - -2025-09-22 01:57:54,908 INFO Connection check task end - -2025-09-22 01:57:56,922 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:57:57,909 INFO Connection check task start - -2025-09-22 01:57:57,909 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:57:57,910 INFO Out dated connection ,size=0 - -2025-09-22 01:57:57,910 INFO Connection check task end - -2025-09-22 01:57:59,923 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:00,911 INFO Connection check task start - -2025-09-22 01:58:00,911 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:00,911 INFO Out dated connection ,size=0 - -2025-09-22 01:58:00,911 INFO Connection check task end - -2025-09-22 01:58:02,924 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:03,912 INFO Connection check task start - -2025-09-22 01:58:03,913 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:03,913 INFO Out dated connection ,size=0 - -2025-09-22 01:58:03,913 INFO Connection check task end - -2025-09-22 01:58:05,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:06,914 INFO Connection check task start - -2025-09-22 01:58:06,915 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:06,915 INFO Out dated connection ,size=0 - -2025-09-22 01:58:06,915 INFO Connection check task end - -2025-09-22 01:58:08,925 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:09,915 INFO Connection check task start - -2025-09-22 01:58:09,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:09,916 INFO Out dated connection ,size=0 - -2025-09-22 01:58:09,916 INFO Connection check task end - -2025-09-22 01:58:11,926 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:12,916 INFO Connection check task start - -2025-09-22 01:58:12,916 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:12,916 INFO Out dated connection ,size=0 - -2025-09-22 01:58:12,916 INFO Connection check task end - -2025-09-22 01:58:14,927 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:15,916 INFO Connection check task start - -2025-09-22 01:58:15,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:15,917 INFO Out dated connection ,size=0 - -2025-09-22 01:58:15,917 INFO Connection check task end - -2025-09-22 01:58:17,928 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:18,917 INFO Connection check task start - -2025-09-22 01:58:18,917 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:18,917 INFO Out dated connection ,size=0 - -2025-09-22 01:58:18,917 INFO Connection check task end - -2025-09-22 01:58:20,929 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:21,918 INFO Connection check task start - -2025-09-22 01:58:21,918 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:21,918 INFO Out dated connection ,size=0 - -2025-09-22 01:58:21,918 INFO Connection check task end - -2025-09-22 01:58:23,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:24,919 INFO Connection check task start - -2025-09-22 01:58:24,919 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:24,919 INFO Out dated connection ,size=0 - -2025-09-22 01:58:24,919 INFO Connection check task end - -2025-09-22 01:58:26,930 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:27,920 INFO Connection check task start - -2025-09-22 01:58:27,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:27,921 INFO Out dated connection ,size=0 - -2025-09-22 01:58:27,921 INFO Connection check task end - -2025-09-22 01:58:29,931 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:30,921 INFO Connection check task start - -2025-09-22 01:58:30,921 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:30,921 INFO Out dated connection ,size=0 - -2025-09-22 01:58:30,921 INFO Connection check task end - -2025-09-22 01:58:32,932 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:33,922 INFO Connection check task start - -2025-09-22 01:58:33,922 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:33,922 INFO Out dated connection ,size=0 - -2025-09-22 01:58:33,922 INFO Connection check task end - -2025-09-22 01:58:35,933 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:36,924 INFO Connection check task start - -2025-09-22 01:58:36,924 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:36,924 INFO Out dated connection ,size=0 - -2025-09-22 01:58:36,924 INFO Connection check task end - -2025-09-22 01:58:38,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:39,925 INFO Connection check task start - -2025-09-22 01:58:39,926 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:39,926 INFO Out dated connection ,size=0 - -2025-09-22 01:58:39,926 INFO Connection check task end - -2025-09-22 01:58:41,934 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:42,927 INFO Connection check task start - -2025-09-22 01:58:42,927 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:42,927 INFO Out dated connection ,size=0 - -2025-09-22 01:58:42,927 INFO Connection check task end - -2025-09-22 01:58:44,935 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:45,929 INFO Connection check task start - -2025-09-22 01:58:45,929 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:45,929 INFO Out dated connection ,size=0 - -2025-09-22 01:58:45,929 INFO Connection check task end - -2025-09-22 01:58:47,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:48,930 INFO Connection check task start - -2025-09-22 01:58:48,930 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:48,930 INFO Out dated connection ,size=0 - -2025-09-22 01:58:48,930 INFO Connection check task end - -2025-09-22 01:58:50,936 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:51,931 INFO Connection check task start - -2025-09-22 01:58:51,931 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:51,931 INFO Out dated connection ,size=0 - -2025-09-22 01:58:51,931 INFO Connection check task end - -2025-09-22 01:58:53,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:54,932 INFO Connection check task start - -2025-09-22 01:58:54,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:54,933 INFO Out dated connection ,size=0 - -2025-09-22 01:58:54,933 INFO Connection check task end - -2025-09-22 01:58:56,937 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:58:57,933 INFO Connection check task start - -2025-09-22 01:58:57,933 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:58:57,933 INFO Out dated connection ,size=0 - -2025-09-22 01:58:57,933 INFO Connection check task end - -2025-09-22 01:58:59,938 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:00,934 INFO Connection check task start - -2025-09-22 01:59:00,934 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:00,934 INFO Out dated connection ,size=0 - -2025-09-22 01:59:00,934 INFO Connection check task end - -2025-09-22 01:59:02,939 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:03,934 INFO Connection check task start - -2025-09-22 01:59:03,935 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:03,935 INFO Out dated connection ,size=0 - -2025-09-22 01:59:03,935 INFO Connection check task end - -2025-09-22 01:59:05,940 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:06,935 INFO Connection check task start - -2025-09-22 01:59:06,936 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:06,936 INFO Out dated connection ,size=0 - -2025-09-22 01:59:06,936 INFO Connection check task end - -2025-09-22 01:59:08,941 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:09,937 INFO Connection check task start - -2025-09-22 01:59:09,937 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:09,937 INFO Out dated connection ,size=0 - -2025-09-22 01:59:09,937 INFO Connection check task end - -2025-09-22 01:59:11,942 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:12,938 INFO Connection check task start - -2025-09-22 01:59:12,938 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:12,939 INFO Out dated connection ,size=0 - -2025-09-22 01:59:12,939 INFO Connection check task end - -2025-09-22 01:59:14,943 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:15,939 INFO Connection check task start - -2025-09-22 01:59:15,940 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:15,940 INFO Out dated connection ,size=0 - -2025-09-22 01:59:15,940 INFO Connection check task end - -2025-09-22 01:59:17,944 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:18,941 INFO Connection check task start - -2025-09-22 01:59:18,941 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:18,941 INFO Out dated connection ,size=0 - -2025-09-22 01:59:18,942 INFO Connection check task end - -2025-09-22 01:59:20,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:21,943 INFO Connection check task start - -2025-09-22 01:59:21,943 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:21,943 INFO Out dated connection ,size=0 - -2025-09-22 01:59:21,943 INFO Connection check task end - -2025-09-22 01:59:23,946 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:24,944 INFO Connection check task start - -2025-09-22 01:59:24,944 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:24,945 INFO Out dated connection ,size=0 - -2025-09-22 01:59:24,945 INFO Connection check task end - -2025-09-22 01:59:26,947 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:27,946 INFO Connection check task start - -2025-09-22 01:59:27,946 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:27,946 INFO Out dated connection ,size=0 - -2025-09-22 01:59:27,946 INFO Connection check task end - -2025-09-22 01:59:29,948 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:30,947 INFO Connection check task start - -2025-09-22 01:59:30,947 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:30,947 INFO Out dated connection ,size=0 - -2025-09-22 01:59:30,947 INFO Connection check task end - -2025-09-22 01:59:32,949 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:33,948 INFO Connection check task start - -2025-09-22 01:59:33,948 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:33,948 INFO Out dated connection ,size=0 - -2025-09-22 01:59:33,948 INFO Connection check task end - -2025-09-22 01:59:35,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:36,949 INFO Connection check task start - -2025-09-22 01:59:36,949 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:36,949 INFO Out dated connection ,size=0 - -2025-09-22 01:59:36,950 INFO Connection check task end - -2025-09-22 01:59:38,950 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:39,950 INFO Connection check task start - -2025-09-22 01:59:39,950 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:39,950 INFO Out dated connection ,size=0 - -2025-09-22 01:59:39,952 INFO Connection check task end - -2025-09-22 01:59:41,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:42,952 INFO Connection check task start - -2025-09-22 01:59:42,952 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:42,952 INFO Out dated connection ,size=0 - -2025-09-22 01:59:42,952 INFO Connection check task end - -2025-09-22 01:59:44,952 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:45,953 INFO Connection check task start - -2025-09-22 01:59:45,953 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:45,953 INFO Out dated connection ,size=0 - -2025-09-22 01:59:45,953 INFO Connection check task end - -2025-09-22 01:59:47,953 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:48,954 INFO Connection check task start - -2025-09-22 01:59:48,954 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:48,954 INFO Out dated connection ,size=0 - -2025-09-22 01:59:48,955 INFO Connection check task end - -2025-09-22 01:59:50,954 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:51,955 INFO Connection check task start - -2025-09-22 01:59:51,955 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:51,955 INFO Out dated connection ,size=0 - -2025-09-22 01:59:51,955 INFO Connection check task end - -2025-09-22 01:59:53,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:54,955 INFO Connection check task start - -2025-09-22 01:59:54,956 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:54,956 INFO Out dated connection ,size=0 - -2025-09-22 01:59:54,956 INFO Connection check task end - -2025-09-22 01:59:56,955 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 01:59:57,956 INFO Connection check task start - -2025-09-22 01:59:57,957 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 01:59:57,957 INFO Out dated connection ,size=0 - -2025-09-22 01:59:57,957 INFO Connection check task end - -2025-09-22 01:59:59,956 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:00,957 INFO Connection check task start - -2025-09-22 02:00:00,958 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:00,958 INFO Out dated connection ,size=0 - -2025-09-22 02:00:00,958 INFO Connection check task end - -2025-09-22 02:00:02,957 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:03,959 INFO Connection check task start - -2025-09-22 02:00:03,959 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:03,959 INFO Out dated connection ,size=0 - -2025-09-22 02:00:03,959 INFO Connection check task end - -2025-09-22 02:00:05,958 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:06,960 INFO Connection check task start - -2025-09-22 02:00:06,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:06,961 INFO Out dated connection ,size=0 - -2025-09-22 02:00:06,961 INFO Connection check task end - -2025-09-22 02:00:08,959 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:09,961 INFO Connection check task start - -2025-09-22 02:00:09,961 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:09,961 INFO Out dated connection ,size=0 - -2025-09-22 02:00:09,961 INFO Connection check task end - -2025-09-22 02:00:11,960 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:12,962 INFO Connection check task start - -2025-09-22 02:00:12,962 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:12,962 INFO Out dated connection ,size=0 - -2025-09-22 02:00:12,962 INFO Connection check task end - -2025-09-22 02:00:14,961 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:15,962 INFO Connection check task start - -2025-09-22 02:00:15,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:15,963 INFO Out dated connection ,size=0 - -2025-09-22 02:00:15,963 INFO Connection check task end - -2025-09-22 02:00:17,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:18,963 INFO Connection check task start - -2025-09-22 02:00:18,963 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:18,963 INFO Out dated connection ,size=0 - -2025-09-22 02:00:18,964 INFO Connection check task end - -2025-09-22 02:00:20,962 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:21,964 INFO Connection check task start - -2025-09-22 02:00:21,964 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:21,964 INFO Out dated connection ,size=0 - -2025-09-22 02:00:21,964 INFO Connection check task end - -2025-09-22 02:00:23,963 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:24,965 INFO Connection check task start - -2025-09-22 02:00:24,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:24,965 INFO Out dated connection ,size=0 - -2025-09-22 02:00:24,965 INFO Connection check task end - -2025-09-22 02:00:26,964 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:27,965 INFO Connection check task start - -2025-09-22 02:00:27,965 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:27,965 INFO Out dated connection ,size=0 - -2025-09-22 02:00:27,965 INFO Connection check task end - -2025-09-22 02:00:29,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:30,966 INFO Connection check task start - -2025-09-22 02:00:30,966 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:30,966 INFO Out dated connection ,size=0 - -2025-09-22 02:00:30,967 INFO Connection check task end - -2025-09-22 02:00:32,965 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:33,968 INFO Connection check task start - -2025-09-22 02:00:33,968 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:33,968 INFO Out dated connection ,size=0 - -2025-09-22 02:00:33,968 INFO Connection check task end - -2025-09-22 02:00:35,966 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:36,969 INFO Connection check task start - -2025-09-22 02:00:36,969 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:36,969 INFO Out dated connection ,size=0 - -2025-09-22 02:00:36,969 INFO Connection check task end - -2025-09-22 02:00:38,967 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:39,970 INFO Connection check task start - -2025-09-22 02:00:39,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:39,970 INFO Out dated connection ,size=0 - -2025-09-22 02:00:39,970 INFO Connection check task end - -2025-09-22 02:00:41,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:42,970 INFO Connection check task start - -2025-09-22 02:00:42,970 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:42,970 INFO Out dated connection ,size=0 - -2025-09-22 02:00:42,970 INFO Connection check task end - -2025-09-22 02:00:44,968 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:45,971 INFO Connection check task start - -2025-09-22 02:00:45,971 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:45,971 INFO Out dated connection ,size=0 - -2025-09-22 02:00:45,971 INFO Connection check task end - -2025-09-22 02:00:47,969 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:48,972 INFO Connection check task start - -2025-09-22 02:00:48,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:48,973 INFO Out dated connection ,size=0 - -2025-09-22 02:00:48,973 INFO Connection check task end - -2025-09-22 02:00:50,970 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:51,973 INFO Connection check task start - -2025-09-22 02:00:51,973 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:51,973 INFO Out dated connection ,size=0 - -2025-09-22 02:00:51,973 INFO Connection check task end - -2025-09-22 02:00:53,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:54,974 INFO Connection check task start - -2025-09-22 02:00:54,974 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:54,974 INFO Out dated connection ,size=0 - -2025-09-22 02:00:54,974 INFO Connection check task end - -2025-09-22 02:00:56,971 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:00:57,975 INFO Connection check task start - -2025-09-22 02:00:57,975 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:00:57,975 INFO Out dated connection ,size=0 - -2025-09-22 02:00:57,976 INFO Connection check task end - -2025-09-22 02:00:59,972 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:00,976 INFO Connection check task start - -2025-09-22 02:01:00,977 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:00,977 INFO Out dated connection ,size=0 - -2025-09-22 02:01:00,977 INFO Connection check task end - -2025-09-22 02:01:02,973 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:03,978 INFO Connection check task start - -2025-09-22 02:01:03,978 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:03,978 INFO Out dated connection ,size=0 - -2025-09-22 02:01:03,978 INFO Connection check task end - -2025-09-22 02:01:05,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:06,979 INFO Connection check task start - -2025-09-22 02:01:06,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:06,980 INFO Out dated connection ,size=0 - -2025-09-22 02:01:06,980 INFO Connection check task end - -2025-09-22 02:01:08,974 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:09,980 INFO Connection check task start - -2025-09-22 02:01:09,980 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:09,980 INFO Out dated connection ,size=0 - -2025-09-22 02:01:09,980 INFO Connection check task end - -2025-09-22 02:01:11,975 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:12,982 INFO Connection check task start - -2025-09-22 02:01:12,982 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:12,982 INFO Out dated connection ,size=0 - -2025-09-22 02:01:12,982 INFO Connection check task end - -2025-09-22 02:01:14,976 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:15,983 INFO Connection check task start - -2025-09-22 02:01:15,983 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:15,983 INFO Out dated connection ,size=0 - -2025-09-22 02:01:15,983 INFO Connection check task end - -2025-09-22 02:01:17,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:18,984 INFO Connection check task start - -2025-09-22 02:01:18,984 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:18,984 INFO Out dated connection ,size=0 - -2025-09-22 02:01:18,984 INFO Connection check task end - -2025-09-22 02:01:20,977 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:21,985 INFO Connection check task start - -2025-09-22 02:01:21,985 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:21,985 INFO Out dated connection ,size=0 - -2025-09-22 02:01:21,985 INFO Connection check task end - -2025-09-22 02:01:23,978 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:24,986 INFO Connection check task start - -2025-09-22 02:01:24,987 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:24,987 INFO Out dated connection ,size=0 - -2025-09-22 02:01:24,987 INFO Connection check task end - -2025-09-22 02:01:26,979 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:27,988 INFO Connection check task start - -2025-09-22 02:01:27,988 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:27,988 INFO Out dated connection ,size=0 - -2025-09-22 02:01:27,988 INFO Connection check task end - -2025-09-22 02:01:29,980 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:30,989 INFO Connection check task start - -2025-09-22 02:01:30,989 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:30,989 INFO Out dated connection ,size=0 - -2025-09-22 02:01:30,990 INFO Connection check task end - -2025-09-22 02:01:32,982 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:33,990 INFO Connection check task start - -2025-09-22 02:01:33,990 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:33,990 INFO Out dated connection ,size=0 - -2025-09-22 02:01:33,990 INFO Connection check task end - -2025-09-22 02:01:35,983 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:36,991 INFO Connection check task start - -2025-09-22 02:01:36,991 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:36,991 INFO Out dated connection ,size=0 - -2025-09-22 02:01:36,991 INFO Connection check task end - -2025-09-22 02:01:38,984 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:39,992 INFO Connection check task start - -2025-09-22 02:01:39,992 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:39,992 INFO Out dated connection ,size=0 - -2025-09-22 02:01:39,992 INFO Connection check task end - -2025-09-22 02:01:41,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:42,993 INFO Connection check task start - -2025-09-22 02:01:42,993 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:42,993 INFO Out dated connection ,size=0 - -2025-09-22 02:01:42,993 INFO Connection check task end - -2025-09-22 02:01:44,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:45,994 INFO Connection check task start - -2025-09-22 02:01:45,994 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:45,995 INFO Out dated connection ,size=0 - -2025-09-22 02:01:45,995 INFO Connection check task end - -2025-09-22 02:01:47,985 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:48,995 INFO Connection check task start - -2025-09-22 02:01:48,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:48,995 INFO Out dated connection ,size=0 - -2025-09-22 02:01:48,995 INFO Connection check task end - -2025-09-22 02:01:50,987 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:51,995 INFO Connection check task start - -2025-09-22 02:01:51,995 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:51,996 INFO Out dated connection ,size=0 - -2025-09-22 02:01:51,996 INFO Connection check task end - -2025-09-22 02:01:53,988 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:54,996 INFO Connection check task start - -2025-09-22 02:01:54,996 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:54,996 INFO Out dated connection ,size=0 - -2025-09-22 02:01:54,996 INFO Connection check task end - -2025-09-22 02:01:56,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:01:57,997 INFO Connection check task start - -2025-09-22 02:01:57,997 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:01:57,997 INFO Out dated connection ,size=0 - -2025-09-22 02:01:57,997 INFO Connection check task end - -2025-09-22 02:01:59,990 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:00,998 INFO Connection check task start - -2025-09-22 02:02:00,998 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:00,998 INFO Out dated connection ,size=0 - -2025-09-22 02:02:00,998 INFO Connection check task end - -2025-09-22 02:02:02,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:03,999 INFO Connection check task start - -2025-09-22 02:02:03,999 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:03,999 INFO Out dated connection ,size=0 - -2025-09-22 02:02:03,999 INFO Connection check task end - -2025-09-22 02:02:05,991 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:07,000 INFO Connection check task start - -2025-09-22 02:02:07,000 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:07,000 INFO Out dated connection ,size=0 - -2025-09-22 02:02:07,000 INFO Connection check task end - -2025-09-22 02:02:08,992 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:10,001 INFO Connection check task start - -2025-09-22 02:02:10,001 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:10,001 INFO Out dated connection ,size=0 - -2025-09-22 02:02:10,001 INFO Connection check task end - -2025-09-22 02:02:11,993 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:13,002 INFO Connection check task start - -2025-09-22 02:02:13,002 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:13,002 INFO Out dated connection ,size=0 - -2025-09-22 02:02:13,002 INFO Connection check task end - -2025-09-22 02:02:14,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:16,003 INFO Connection check task start - -2025-09-22 02:02:16,003 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:16,003 INFO Out dated connection ,size=0 - -2025-09-22 02:02:16,003 INFO Connection check task end - -2025-09-22 02:02:17,994 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:19,003 INFO Connection check task start - -2025-09-22 02:02:19,004 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:19,004 INFO Out dated connection ,size=0 - -2025-09-22 02:02:19,004 INFO Connection check task end - -2025-09-22 02:02:20,995 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:22,005 INFO Connection check task start - -2025-09-22 02:02:22,005 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:22,005 INFO Out dated connection ,size=0 - -2025-09-22 02:02:22,005 INFO Connection check task end - -2025-09-22 02:02:23,996 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:25,005 INFO Connection check task start - -2025-09-22 02:02:25,006 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:25,006 INFO Out dated connection ,size=0 - -2025-09-22 02:02:25,006 INFO Connection check task end - -2025-09-22 02:02:26,997 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:28,007 INFO Connection check task start - -2025-09-22 02:02:28,007 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:28,007 INFO Out dated connection ,size=0 - -2025-09-22 02:02:28,007 INFO Connection check task end - -2025-09-22 02:02:29,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:31,008 INFO Connection check task start - -2025-09-22 02:02:31,008 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:31,009 INFO Out dated connection ,size=0 - -2025-09-22 02:02:31,009 INFO Connection check task end - -2025-09-22 02:02:32,998 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:34,009 INFO Connection check task start - -2025-09-22 02:02:34,009 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:34,009 INFO Out dated connection ,size=0 - -2025-09-22 02:02:34,009 INFO Connection check task end - -2025-09-22 02:02:36,000 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:37,010 INFO Connection check task start - -2025-09-22 02:02:37,011 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:37,011 INFO Out dated connection ,size=0 - -2025-09-22 02:02:37,011 INFO Connection check task end - -2025-09-22 02:02:39,001 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:40,012 INFO Connection check task start - -2025-09-22 02:02:40,012 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:40,012 INFO Out dated connection ,size=0 - -2025-09-22 02:02:40,013 INFO Connection check task end - -2025-09-22 02:02:42,002 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:43,013 INFO Connection check task start - -2025-09-22 02:02:43,013 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:43,013 INFO Out dated connection ,size=0 - -2025-09-22 02:02:43,013 INFO Connection check task end - -2025-09-22 02:02:45,003 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:46,014 INFO Connection check task start - -2025-09-22 02:02:46,014 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:46,014 INFO Out dated connection ,size=0 - -2025-09-22 02:02:46,014 INFO Connection check task end - -2025-09-22 02:02:48,005 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:49,015 INFO Connection check task start - -2025-09-22 02:02:49,015 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:49,015 INFO Out dated connection ,size=0 - -2025-09-22 02:02:49,015 INFO Connection check task end - -2025-09-22 02:02:51,006 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:52,016 INFO Connection check task start - -2025-09-22 02:02:52,017 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:52,017 INFO Out dated connection ,size=0 - -2025-09-22 02:02:52,017 INFO Connection check task end - -2025-09-22 02:02:54,007 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:55,018 INFO Connection check task start - -2025-09-22 02:02:55,018 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:55,019 INFO Out dated connection ,size=0 - -2025-09-22 02:02:55,019 INFO Connection check task end - -2025-09-22 02:02:57,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:02:58,019 INFO Connection check task start - -2025-09-22 02:02:58,019 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:02:58,019 INFO Out dated connection ,size=0 - -2025-09-22 02:02:58,020 INFO Connection check task end - -2025-09-22 02:03:00,008 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:01,020 INFO Connection check task start - -2025-09-22 02:03:01,021 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:01,021 INFO Out dated connection ,size=0 - -2025-09-22 02:03:01,021 INFO Connection check task end - -2025-09-22 02:03:03,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:04,022 INFO Connection check task start - -2025-09-22 02:03:04,022 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:04,022 INFO Out dated connection ,size=0 - -2025-09-22 02:03:04,023 INFO Connection check task end - -2025-09-22 02:03:06,009 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:07,024 INFO Connection check task start - -2025-09-22 02:03:07,024 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:07,024 INFO Out dated connection ,size=0 - -2025-09-22 02:03:07,024 INFO Connection check task end - -2025-09-22 02:03:09,010 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:10,025 INFO Connection check task start - -2025-09-22 02:03:10,025 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:10,025 INFO Out dated connection ,size=0 - -2025-09-22 02:03:10,025 INFO Connection check task end - -2025-09-22 02:03:12,011 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:13,025 INFO Connection check task start - -2025-09-22 02:03:13,026 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:13,026 INFO Out dated connection ,size=0 - -2025-09-22 02:03:13,026 INFO Connection check task end - -2025-09-22 02:03:15,012 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:16,026 INFO Connection check task start - -2025-09-22 02:03:16,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:16,027 INFO Out dated connection ,size=0 - -2025-09-22 02:03:16,027 INFO Connection check task end - -2025-09-22 02:03:18,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:19,027 INFO Connection check task start - -2025-09-22 02:03:19,027 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:19,027 INFO Out dated connection ,size=0 - -2025-09-22 02:03:19,028 INFO Connection check task end - -2025-09-22 02:03:21,013 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:22,028 INFO Connection check task start - -2025-09-22 02:03:22,028 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:22,028 INFO Out dated connection ,size=0 - -2025-09-22 02:03:22,028 INFO Connection check task end - -2025-09-22 02:03:24,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:25,030 INFO Connection check task start - -2025-09-22 02:03:25,030 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:25,030 INFO Out dated connection ,size=0 - -2025-09-22 02:03:25,030 INFO Connection check task end - -2025-09-22 02:03:27,014 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:28,031 INFO Connection check task start - -2025-09-22 02:03:28,031 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:28,031 INFO Out dated connection ,size=0 - -2025-09-22 02:03:28,031 INFO Connection check task end - -2025-09-22 02:03:30,016 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:31,033 INFO Connection check task start - -2025-09-22 02:03:31,033 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:31,033 INFO Out dated connection ,size=0 - -2025-09-22 02:03:31,033 INFO Connection check task end - -2025-09-22 02:03:33,017 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:34,034 INFO Connection check task start - -2025-09-22 02:03:34,034 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:34,034 INFO Out dated connection ,size=0 - -2025-09-22 02:03:34,034 INFO Connection check task end - -2025-09-22 02:03:36,018 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:37,035 INFO Connection check task start - -2025-09-22 02:03:37,035 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:37,035 INFO Out dated connection ,size=0 - -2025-09-22 02:03:37,035 INFO Connection check task end - -2025-09-22 02:03:39,019 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:40,036 INFO Connection check task start - -2025-09-22 02:03:40,036 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:40,036 INFO Out dated connection ,size=0 - -2025-09-22 02:03:40,036 INFO Connection check task end - -2025-09-22 02:03:42,020 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:43,037 INFO Connection check task start - -2025-09-22 02:03:43,038 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:43,038 INFO Out dated connection ,size=0 - -2025-09-22 02:03:43,038 INFO Connection check task end - -2025-09-22 02:03:45,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:46,039 INFO Connection check task start - -2025-09-22 02:03:46,039 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:46,039 INFO Out dated connection ,size=0 - -2025-09-22 02:03:46,039 INFO Connection check task end - -2025-09-22 02:03:48,021 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:49,040 INFO Connection check task start - -2025-09-22 02:03:49,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:49,040 INFO Out dated connection ,size=0 - -2025-09-22 02:03:49,040 INFO Connection check task end - -2025-09-22 02:03:51,022 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:52,040 INFO Connection check task start - -2025-09-22 02:03:52,040 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:52,040 INFO Out dated connection ,size=0 - -2025-09-22 02:03:52,040 INFO Connection check task end - -2025-09-22 02:03:54,023 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:55,041 INFO Connection check task start - -2025-09-22 02:03:55,041 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:55,041 INFO Out dated connection ,size=0 - -2025-09-22 02:03:55,041 INFO Connection check task end - -2025-09-22 02:03:57,024 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:03:58,042 INFO Connection check task start - -2025-09-22 02:03:58,042 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:03:58,042 INFO Out dated connection ,size=0 - -2025-09-22 02:03:58,042 INFO Connection check task end - -2025-09-22 02:04:00,025 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:01,043 INFO Connection check task start - -2025-09-22 02:04:01,043 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:01,043 INFO Out dated connection ,size=0 - -2025-09-22 02:04:01,043 INFO Connection check task end - -2025-09-22 02:04:03,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:04,044 INFO Connection check task start - -2025-09-22 02:04:04,044 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:04,044 INFO Out dated connection ,size=0 - -2025-09-22 02:04:04,044 INFO Connection check task end - -2025-09-22 02:04:06,026 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:07,045 INFO Connection check task start - -2025-09-22 02:04:07,045 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:07,045 INFO Out dated connection ,size=0 - -2025-09-22 02:04:07,045 INFO Connection check task end - -2025-09-22 02:04:09,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:10,046 INFO Connection check task start - -2025-09-22 02:04:10,046 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:10,046 INFO Out dated connection ,size=0 - -2025-09-22 02:04:10,046 INFO Connection check task end - -2025-09-22 02:04:12,027 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:13,047 INFO Connection check task start - -2025-09-22 02:04:13,047 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:13,047 INFO Out dated connection ,size=0 - -2025-09-22 02:04:13,048 INFO Connection check task end - -2025-09-22 02:04:15,028 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:16,048 INFO Connection check task start - -2025-09-22 02:04:16,049 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:16,049 INFO Out dated connection ,size=0 - -2025-09-22 02:04:16,049 INFO Connection check task end - -2025-09-22 02:04:18,029 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:19,050 INFO Connection check task start - -2025-09-22 02:04:19,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:19,050 INFO Out dated connection ,size=0 - -2025-09-22 02:04:19,050 INFO Connection check task end - -2025-09-22 02:04:21,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:22,050 INFO Connection check task start - -2025-09-22 02:04:22,050 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:22,051 INFO Out dated connection ,size=0 - -2025-09-22 02:04:22,051 INFO Connection check task end - -2025-09-22 02:04:24,030 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:25,051 INFO Connection check task start - -2025-09-22 02:04:25,052 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:25,052 INFO Out dated connection ,size=0 - -2025-09-22 02:04:25,052 INFO Connection check task end - -2025-09-22 02:04:27,031 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:28,052 INFO Connection check task start - -2025-09-22 02:04:28,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:28,053 INFO Out dated connection ,size=0 - -2025-09-22 02:04:28,053 INFO Connection check task end - -2025-09-22 02:04:30,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:31,053 INFO Connection check task start - -2025-09-22 02:04:31,053 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:31,053 INFO Out dated connection ,size=0 - -2025-09-22 02:04:31,053 INFO Connection check task end - -2025-09-22 02:04:33,032 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:34,054 INFO Connection check task start - -2025-09-22 02:04:34,054 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:34,054 INFO Out dated connection ,size=0 - -2025-09-22 02:04:34,054 INFO Connection check task end - -2025-09-22 02:04:36,033 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:37,054 INFO Connection check task start - -2025-09-22 02:04:37,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:37,055 INFO Out dated connection ,size=0 - -2025-09-22 02:04:37,055 INFO Connection check task end - -2025-09-22 02:04:39,034 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:40,055 INFO Connection check task start - -2025-09-22 02:04:40,055 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:40,055 INFO Out dated connection ,size=0 - -2025-09-22 02:04:40,055 INFO Connection check task end - -2025-09-22 02:04:42,035 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:43,056 INFO Connection check task start - -2025-09-22 02:04:43,057 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:43,057 INFO Out dated connection ,size=0 - -2025-09-22 02:04:43,057 INFO Connection check task end - -2025-09-22 02:04:45,036 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:46,058 INFO Connection check task start - -2025-09-22 02:04:46,058 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:46,058 INFO Out dated connection ,size=0 - -2025-09-22 02:04:46,058 INFO Connection check task end - -2025-09-22 02:04:48,037 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:49,059 INFO Connection check task start - -2025-09-22 02:04:49,059 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:49,059 INFO Out dated connection ,size=0 - -2025-09-22 02:04:49,059 INFO Connection check task end - -2025-09-22 02:04:51,038 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:52,060 INFO Connection check task start - -2025-09-22 02:04:52,061 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:52,061 INFO Out dated connection ,size=0 - -2025-09-22 02:04:52,061 INFO Connection check task end - -2025-09-22 02:04:54,039 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:55,061 INFO Connection check task start - -2025-09-22 02:04:55,062 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:55,062 INFO Out dated connection ,size=0 - -2025-09-22 02:04:55,062 INFO Connection check task end - -2025-09-22 02:04:57,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:04:58,063 INFO Connection check task start - -2025-09-22 02:04:58,063 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:04:58,063 INFO Out dated connection ,size=0 - -2025-09-22 02:04:58,064 INFO Connection check task end - -2025-09-22 02:05:00,040 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:01,064 INFO Connection check task start - -2025-09-22 02:05:01,064 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:01,064 INFO Out dated connection ,size=0 - -2025-09-22 02:05:01,064 INFO Connection check task end - -2025-09-22 02:05:03,041 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:04,064 INFO Connection check task start - -2025-09-22 02:05:04,065 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:04,065 INFO Out dated connection ,size=0 - -2025-09-22 02:05:04,065 INFO Connection check task end - -2025-09-22 02:05:06,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:07,066 INFO Connection check task start - -2025-09-22 02:05:07,066 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:07,066 INFO Out dated connection ,size=0 - -2025-09-22 02:05:07,066 INFO Connection check task end - -2025-09-22 02:05:09,042 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:10,066 INFO Connection check task start - -2025-09-22 02:05:10,067 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:10,068 INFO Out dated connection ,size=0 - -2025-09-22 02:05:10,068 INFO Connection check task end - -2025-09-22 02:05:12,043 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:13,069 INFO Connection check task start - -2025-09-22 02:05:13,069 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:13,069 INFO Out dated connection ,size=0 - -2025-09-22 02:05:13,069 INFO Connection check task end - -2025-09-22 02:05:15,044 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:16,070 INFO Connection check task start - -2025-09-22 02:05:16,071 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:16,071 INFO Out dated connection ,size=0 - -2025-09-22 02:05:16,071 INFO Connection check task end - -2025-09-22 02:05:18,045 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:19,072 INFO Connection check task start - -2025-09-22 02:05:19,072 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:19,072 INFO Out dated connection ,size=0 - -2025-09-22 02:05:19,072 INFO Connection check task end - -2025-09-22 02:05:21,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:22,073 INFO Connection check task start - -2025-09-22 02:05:22,073 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:22,073 INFO Out dated connection ,size=0 - -2025-09-22 02:05:22,073 INFO Connection check task end - -2025-09-22 02:05:24,062 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:25,074 INFO Connection check task start - -2025-09-22 02:05:25,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:25,074 INFO Out dated connection ,size=0 - -2025-09-22 02:05:25,074 INFO Connection check task end - -2025-09-22 02:05:27,063 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:28,074 INFO Connection check task start - -2025-09-22 02:05:28,074 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:28,075 INFO Out dated connection ,size=0 - -2025-09-22 02:05:28,075 INFO Connection check task end - -2025-09-22 02:05:30,064 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:31,075 INFO Connection check task start - -2025-09-22 02:05:31,075 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:31,075 INFO Out dated connection ,size=0 - -2025-09-22 02:05:31,075 INFO Connection check task end - -2025-09-22 02:05:33,065 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:34,076 INFO Connection check task start - -2025-09-22 02:05:34,076 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:34,077 INFO Out dated connection ,size=0 - -2025-09-22 02:05:34,077 INFO Connection check task end - -2025-09-22 02:05:36,066 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:37,077 INFO Connection check task start - -2025-09-22 02:05:37,077 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:37,077 INFO Out dated connection ,size=0 - -2025-09-22 02:05:37,078 INFO Connection check task end - -2025-09-22 02:05:39,067 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:40,078 INFO Connection check task start - -2025-09-22 02:05:40,079 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:40,079 INFO Out dated connection ,size=0 - -2025-09-22 02:05:40,079 INFO Connection check task end - -2025-09-22 02:05:42,068 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:43,079 INFO Connection check task start - -2025-09-22 02:05:43,080 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:43,080 INFO Out dated connection ,size=0 - -2025-09-22 02:05:43,080 INFO Connection check task end - -2025-09-22 02:05:45,070 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:46,081 INFO Connection check task start - -2025-09-22 02:05:46,081 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:46,081 INFO Out dated connection ,size=0 - -2025-09-22 02:05:46,081 INFO Connection check task end - -2025-09-22 02:05:48,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:49,082 INFO Connection check task start - -2025-09-22 02:05:49,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:49,082 INFO Out dated connection ,size=0 - -2025-09-22 02:05:49,082 INFO Connection check task end - -2025-09-22 02:05:51,071 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:52,082 INFO Connection check task start - -2025-09-22 02:05:52,082 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:52,083 INFO Out dated connection ,size=0 - -2025-09-22 02:05:52,083 INFO Connection check task end - -2025-09-22 02:05:54,072 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:55,084 INFO Connection check task start - -2025-09-22 02:05:55,084 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:55,084 INFO Out dated connection ,size=0 - -2025-09-22 02:05:55,084 INFO Connection check task end - -2025-09-22 02:05:57,073 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:05:58,085 INFO Connection check task start - -2025-09-22 02:05:58,085 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:05:58,085 INFO Out dated connection ,size=0 - -2025-09-22 02:05:58,085 INFO Connection check task end - -2025-09-22 02:06:00,074 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:01,086 INFO Connection check task start - -2025-09-22 02:06:01,087 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:01,087 INFO Out dated connection ,size=0 - -2025-09-22 02:06:01,088 INFO Connection check task end - -2025-09-22 02:06:03,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:04,089 INFO Connection check task start - -2025-09-22 02:06:04,089 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:04,089 INFO Out dated connection ,size=0 - -2025-09-22 02:06:04,089 INFO Connection check task end - -2025-09-22 02:06:06,075 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:07,090 INFO Connection check task start - -2025-09-22 02:06:07,090 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:07,090 INFO Out dated connection ,size=0 - -2025-09-22 02:06:07,090 INFO Connection check task end - -2025-09-22 02:06:09,076 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:10,091 INFO Connection check task start - -2025-09-22 02:06:10,091 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:10,091 INFO Out dated connection ,size=0 - -2025-09-22 02:06:10,092 INFO Connection check task end - -2025-09-22 02:06:12,077 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:13,092 INFO Connection check task start - -2025-09-22 02:06:13,092 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:13,092 INFO Out dated connection ,size=0 - -2025-09-22 02:06:13,092 INFO Connection check task end - -2025-09-22 02:06:15,078 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:16,093 INFO Connection check task start - -2025-09-22 02:06:16,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:16,094 INFO Out dated connection ,size=0 - -2025-09-22 02:06:16,094 INFO Connection check task end - -2025-09-22 02:06:18,079 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:19,094 INFO Connection check task start - -2025-09-22 02:06:19,094 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:19,094 INFO Out dated connection ,size=0 - -2025-09-22 02:06:19,094 INFO Connection check task end - -2025-09-22 02:06:21,080 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:22,095 INFO Connection check task start - -2025-09-22 02:06:22,095 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:22,095 INFO Out dated connection ,size=0 - -2025-09-22 02:06:22,095 INFO Connection check task end - -2025-09-22 02:06:24,081 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:25,096 INFO Connection check task start - -2025-09-22 02:06:25,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:25,097 INFO Out dated connection ,size=0 - -2025-09-22 02:06:25,097 INFO Connection check task end - -2025-09-22 02:06:27,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:28,097 INFO Connection check task start - -2025-09-22 02:06:28,097 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:28,097 INFO Out dated connection ,size=0 - -2025-09-22 02:06:28,097 INFO Connection check task end - -2025-09-22 02:06:30,082 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:31,098 INFO Connection check task start - -2025-09-22 02:06:31,098 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:31,099 INFO Out dated connection ,size=0 - -2025-09-22 02:06:31,099 INFO Connection check task end - -2025-09-22 02:06:33,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:34,099 INFO Connection check task start - -2025-09-22 02:06:34,099 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:34,099 INFO Out dated connection ,size=0 - -2025-09-22 02:06:34,099 INFO Connection check task end - -2025-09-22 02:06:36,084 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:37,100 INFO Connection check task start - -2025-09-22 02:06:37,100 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:37,100 INFO Out dated connection ,size=0 - -2025-09-22 02:06:37,100 INFO Connection check task end - -2025-09-22 02:06:39,085 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:40,101 INFO Connection check task start - -2025-09-22 02:06:40,101 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:40,101 INFO Out dated connection ,size=0 - -2025-09-22 02:06:40,101 INFO Connection check task end - -2025-09-22 02:06:42,087 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:43,103 INFO Connection check task start - -2025-09-22 02:06:43,103 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:43,103 INFO Out dated connection ,size=0 - -2025-09-22 02:06:43,103 INFO Connection check task end - -2025-09-22 02:06:45,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:46,104 INFO Connection check task start - -2025-09-22 02:06:46,104 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:46,105 INFO Out dated connection ,size=0 - -2025-09-22 02:06:46,105 INFO Connection check task end - -2025-09-22 02:06:48,088 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:49,105 INFO Connection check task start - -2025-09-22 02:06:49,105 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:49,105 INFO Out dated connection ,size=0 - -2025-09-22 02:06:49,106 INFO Connection check task end - -2025-09-22 02:06:51,090 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:52,128 INFO Connection check task start - -2025-09-22 02:06:52,128 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:52,137 INFO Out dated connection ,size=0 - -2025-09-22 02:06:52,137 INFO Connection check task end - -2025-09-22 02:06:54,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:55,138 INFO Connection check task start - -2025-09-22 02:06:55,138 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:55,138 INFO Out dated connection ,size=0 - -2025-09-22 02:06:55,138 INFO Connection check task end - -2025-09-22 02:06:57,092 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:06:58,138 INFO Connection check task start - -2025-09-22 02:06:58,139 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:06:58,139 INFO Out dated connection ,size=0 - -2025-09-22 02:06:58,139 INFO Connection check task end - -2025-09-22 02:07:00,093 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:01,139 INFO Connection check task start - -2025-09-22 02:07:01,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:01,140 INFO Out dated connection ,size=0 - -2025-09-22 02:07:01,140 INFO Connection check task end - -2025-09-22 02:07:03,094 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:04,140 INFO Connection check task start - -2025-09-22 02:07:04,140 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:04,140 INFO Out dated connection ,size=0 - -2025-09-22 02:07:04,140 INFO Connection check task end - -2025-09-22 02:07:06,095 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:07,141 INFO Connection check task start - -2025-09-22 02:07:07,141 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:07,141 INFO Out dated connection ,size=0 - -2025-09-22 02:07:07,141 INFO Connection check task end - -2025-09-22 02:07:09,097 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:10,141 INFO Connection check task start - -2025-09-22 02:07:10,142 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:10,142 INFO Out dated connection ,size=0 - -2025-09-22 02:07:10,142 INFO Connection check task end - -2025-09-22 02:07:12,099 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:13,143 INFO Connection check task start - -2025-09-22 02:07:13,143 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:13,143 INFO Out dated connection ,size=0 - -2025-09-22 02:07:13,144 INFO Connection check task end - -2025-09-22 02:07:15,100 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:16,144 INFO Connection check task start - -2025-09-22 02:07:16,144 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:16,145 INFO Out dated connection ,size=0 - -2025-09-22 02:07:16,145 INFO Connection check task end - -2025-09-22 02:07:18,101 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:19,145 INFO Connection check task start - -2025-09-22 02:07:19,145 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:19,145 INFO Out dated connection ,size=0 - -2025-09-22 02:07:19,145 INFO Connection check task end - -2025-09-22 02:07:21,102 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:22,146 INFO Connection check task start - -2025-09-22 02:07:22,147 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:22,147 INFO Out dated connection ,size=0 - -2025-09-22 02:07:22,147 INFO Connection check task end - -2025-09-22 02:07:24,103 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:25,147 INFO Connection check task start - -2025-09-22 02:07:25,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:25,148 INFO Out dated connection ,size=0 - -2025-09-22 02:07:25,148 INFO Connection check task end - -2025-09-22 02:07:27,104 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:28,148 INFO Connection check task start - -2025-09-22 02:07:28,148 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:28,148 INFO Out dated connection ,size=0 - -2025-09-22 02:07:28,148 INFO Connection check task end - -2025-09-22 02:07:30,105 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:31,149 INFO Connection check task start - -2025-09-22 02:07:31,149 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:31,149 INFO Out dated connection ,size=0 - -2025-09-22 02:07:31,150 INFO Connection check task end - -2025-09-22 02:07:33,106 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:34,150 INFO Connection check task start - -2025-09-22 02:07:34,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:34,150 INFO Out dated connection ,size=0 - -2025-09-22 02:07:34,150 INFO Connection check task end - -2025-09-22 02:07:36,107 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:37,150 INFO Connection check task start - -2025-09-22 02:07:37,150 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:37,150 INFO Out dated connection ,size=0 - -2025-09-22 02:07:37,151 INFO Connection check task end - -2025-09-22 02:07:39,108 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:40,151 INFO Connection check task start - -2025-09-22 02:07:40,151 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:40,151 INFO Out dated connection ,size=0 - -2025-09-22 02:07:40,151 INFO Connection check task end - -2025-09-22 02:07:42,109 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:43,151 INFO Connection check task start - -2025-09-22 02:07:43,152 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:43,152 INFO Out dated connection ,size=0 - -2025-09-22 02:07:43,152 INFO Connection check task end - -2025-09-22 02:07:45,110 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:46,152 INFO Connection check task start - -2025-09-22 02:07:46,153 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:46,153 INFO Out dated connection ,size=0 - -2025-09-22 02:07:46,153 INFO Connection check task end - -2025-09-22 02:07:48,111 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:49,153 INFO Connection check task start - -2025-09-22 02:07:49,154 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:49,154 INFO Out dated connection ,size=0 - -2025-09-22 02:07:49,154 INFO Connection check task end - -2025-09-22 02:07:51,114 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:52,155 INFO Connection check task start - -2025-09-22 02:07:52,155 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:52,155 INFO Out dated connection ,size=0 - -2025-09-22 02:07:52,155 INFO Connection check task end - -2025-09-22 02:07:54,115 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:55,156 INFO Connection check task start - -2025-09-22 02:07:55,156 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:55,156 INFO Out dated connection ,size=0 - -2025-09-22 02:07:55,156 INFO Connection check task end - -2025-09-22 02:07:57,116 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:07:58,157 INFO Connection check task start - -2025-09-22 02:07:58,157 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:07:58,157 INFO Out dated connection ,size=0 - -2025-09-22 02:07:58,157 INFO Connection check task end - -2025-09-22 02:08:00,119 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:01,158 INFO Connection check task start - -2025-09-22 02:08:01,158 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:01,158 INFO Out dated connection ,size=0 - -2025-09-22 02:08:01,158 INFO Connection check task end - -2025-09-22 02:08:03,120 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:04,159 INFO Connection check task start - -2025-09-22 02:08:04,159 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:04,159 INFO Out dated connection ,size=0 - -2025-09-22 02:08:04,159 INFO Connection check task end - -2025-09-22 02:08:06,121 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:07,159 INFO Connection check task start - -2025-09-22 02:08:07,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:07,160 INFO Out dated connection ,size=0 - -2025-09-22 02:08:07,160 INFO Connection check task end - -2025-09-22 02:08:09,122 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:10,160 INFO Connection check task start - -2025-09-22 02:08:10,160 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:10,160 INFO Out dated connection ,size=0 - -2025-09-22 02:08:10,160 INFO Connection check task end - -2025-09-22 02:08:12,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:13,162 INFO Connection check task start - -2025-09-22 02:08:13,162 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:13,162 INFO Out dated connection ,size=0 - -2025-09-22 02:08:13,162 INFO Connection check task end - -2025-09-22 02:08:15,124 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:16,163 INFO Connection check task start - -2025-09-22 02:08:16,163 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:16,163 INFO Out dated connection ,size=0 - -2025-09-22 02:08:16,163 INFO Connection check task end - -2025-09-22 02:08:18,125 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:19,164 INFO Connection check task start - -2025-09-22 02:08:19,164 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:19,164 INFO Out dated connection ,size=0 - -2025-09-22 02:08:19,164 INFO Connection check task end - -2025-09-22 02:08:21,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:22,164 INFO Connection check task start - -2025-09-22 02:08:22,165 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:22,165 INFO Out dated connection ,size=0 - -2025-09-22 02:08:22,165 INFO Connection check task end - -2025-09-22 02:08:24,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:25,166 INFO Connection check task start - -2025-09-22 02:08:25,166 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:25,166 INFO Out dated connection ,size=0 - -2025-09-22 02:08:25,166 INFO Connection check task end - -2025-09-22 02:08:27,126 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:28,167 INFO Connection check task start - -2025-09-22 02:08:28,167 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:28,167 INFO Out dated connection ,size=0 - -2025-09-22 02:08:28,167 INFO Connection check task end - -2025-09-22 02:08:30,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:31,168 INFO Connection check task start - -2025-09-22 02:08:31,169 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:31,169 INFO Out dated connection ,size=0 - -2025-09-22 02:08:31,169 INFO Connection check task end - -2025-09-22 02:08:33,127 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:34,169 INFO Connection check task start - -2025-09-22 02:08:34,170 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:34,170 INFO Out dated connection ,size=0 - -2025-09-22 02:08:34,170 INFO Connection check task end - -2025-09-22 02:08:36,128 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:37,170 INFO Connection check task start - -2025-09-22 02:08:37,171 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:37,171 INFO Out dated connection ,size=0 - -2025-09-22 02:08:37,171 INFO Connection check task end - -2025-09-22 02:08:39,130 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:40,172 INFO Connection check task start - -2025-09-22 02:08:40,172 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:40,172 INFO Out dated connection ,size=0 - -2025-09-22 02:08:40,172 INFO Connection check task end - -2025-09-22 02:08:42,131 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:43,172 INFO Connection check task start - -2025-09-22 02:08:43,173 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:43,173 INFO Out dated connection ,size=0 - -2025-09-22 02:08:43,173 INFO Connection check task end - -2025-09-22 02:08:45,132 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:46,174 INFO Connection check task start - -2025-09-22 02:08:46,175 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:46,175 INFO Out dated connection ,size=0 - -2025-09-22 02:08:46,175 INFO Connection check task end - -2025-09-22 02:08:48,134 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:49,176 INFO Connection check task start - -2025-09-22 02:08:49,176 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:49,176 INFO Out dated connection ,size=0 - -2025-09-22 02:08:49,176 INFO Connection check task end - -2025-09-22 02:08:51,135 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:52,176 INFO Connection check task start - -2025-09-22 02:08:52,177 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:52,177 INFO Out dated connection ,size=0 - -2025-09-22 02:08:52,177 INFO Connection check task end - -2025-09-22 02:08:54,136 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:55,177 INFO Connection check task start - -2025-09-22 02:08:55,178 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:55,178 INFO Out dated connection ,size=0 - -2025-09-22 02:08:55,178 INFO Connection check task end - -2025-09-22 02:08:57,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:08:58,179 INFO Connection check task start - -2025-09-22 02:08:58,179 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:08:58,179 INFO Out dated connection ,size=0 - -2025-09-22 02:08:58,179 INFO Connection check task end - -2025-09-22 02:09:00,137 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:01,180 INFO Connection check task start - -2025-09-22 02:09:01,180 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:01,180 INFO Out dated connection ,size=0 - -2025-09-22 02:09:01,180 INFO Connection check task end - -2025-09-22 02:09:03,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:04,181 INFO Connection check task start - -2025-09-22 02:09:04,181 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:04,181 INFO Out dated connection ,size=0 - -2025-09-22 02:09:04,181 INFO Connection check task end - -2025-09-22 02:09:06,138 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:07,182 INFO Connection check task start - -2025-09-22 02:09:07,182 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:07,182 INFO Out dated connection ,size=0 - -2025-09-22 02:09:07,182 INFO Connection check task end - -2025-09-22 02:09:09,139 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:10,183 INFO Connection check task start - -2025-09-22 02:09:10,183 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:10,183 INFO Out dated connection ,size=0 - -2025-09-22 02:09:10,183 INFO Connection check task end - -2025-09-22 02:09:12,140 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:13,184 INFO Connection check task start - -2025-09-22 02:09:13,184 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:13,184 INFO Out dated connection ,size=0 - -2025-09-22 02:09:13,184 INFO Connection check task end - -2025-09-22 02:09:15,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:16,185 INFO Connection check task start - -2025-09-22 02:09:16,185 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:16,185 INFO Out dated connection ,size=0 - -2025-09-22 02:09:16,185 INFO Connection check task end - -2025-09-22 02:09:18,141 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:19,186 INFO Connection check task start - -2025-09-22 02:09:19,186 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:19,186 INFO Out dated connection ,size=0 - -2025-09-22 02:09:19,186 INFO Connection check task end - -2025-09-22 02:09:21,142 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:22,187 INFO Connection check task start - -2025-09-22 02:09:22,187 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:22,188 INFO Out dated connection ,size=0 - -2025-09-22 02:09:22,188 INFO Connection check task end - -2025-09-22 02:09:24,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:25,189 INFO Connection check task start - -2025-09-22 02:09:25,189 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:25,189 INFO Out dated connection ,size=0 - -2025-09-22 02:09:25,190 INFO Connection check task end - -2025-09-22 02:09:27,143 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:28,191 INFO Connection check task start - -2025-09-22 02:09:28,191 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:28,191 INFO Out dated connection ,size=0 - -2025-09-22 02:09:28,191 INFO Connection check task end - -2025-09-22 02:09:30,144 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:31,193 INFO Connection check task start - -2025-09-22 02:09:31,194 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:31,194 INFO Out dated connection ,size=0 - -2025-09-22 02:09:31,194 INFO Connection check task end - -2025-09-22 02:09:33,145 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:34,195 INFO Connection check task start - -2025-09-22 02:09:34,195 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:34,195 INFO Out dated connection ,size=0 - -2025-09-22 02:09:34,195 INFO Connection check task end - -2025-09-22 02:09:36,146 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:37,195 INFO Connection check task start - -2025-09-22 02:09:37,196 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:37,196 INFO Out dated connection ,size=0 - -2025-09-22 02:09:37,196 INFO Connection check task end - -2025-09-22 02:09:39,147 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:40,197 INFO Connection check task start - -2025-09-22 02:09:40,197 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:40,198 INFO Out dated connection ,size=0 - -2025-09-22 02:09:40,198 INFO Connection check task end - -2025-09-22 02:09:42,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:43,198 INFO Connection check task start - -2025-09-22 02:09:43,198 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:43,198 INFO Out dated connection ,size=0 - -2025-09-22 02:09:43,199 INFO Connection check task end - -2025-09-22 02:09:45,148 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:46,200 INFO Connection check task start - -2025-09-22 02:09:46,200 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:46,200 INFO Out dated connection ,size=0 - -2025-09-22 02:09:46,200 INFO Connection check task end - -2025-09-22 02:09:48,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:49,201 INFO Connection check task start - -2025-09-22 02:09:49,201 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:49,201 INFO Out dated connection ,size=0 - -2025-09-22 02:09:49,201 INFO Connection check task end - -2025-09-22 02:09:51,149 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:52,202 INFO Connection check task start - -2025-09-22 02:09:52,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:52,202 INFO Out dated connection ,size=0 - -2025-09-22 02:09:52,202 INFO Connection check task end - -2025-09-22 02:09:54,150 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:55,202 INFO Connection check task start - -2025-09-22 02:09:55,202 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:55,203 INFO Out dated connection ,size=0 - -2025-09-22 02:09:55,203 INFO Connection check task end - -2025-09-22 02:09:57,151 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:09:58,204 INFO Connection check task start - -2025-09-22 02:09:58,204 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:09:58,204 INFO Out dated connection ,size=0 - -2025-09-22 02:09:58,204 INFO Connection check task end - -2025-09-22 02:10:00,152 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:01,205 INFO Connection check task start - -2025-09-22 02:10:01,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:01,205 INFO Out dated connection ,size=0 - -2025-09-22 02:10:01,205 INFO Connection check task end - -2025-09-22 02:10:03,154 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:04,205 INFO Connection check task start - -2025-09-22 02:10:04,205 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:04,205 INFO Out dated connection ,size=0 - -2025-09-22 02:10:04,205 INFO Connection check task end - -2025-09-22 02:10:06,155 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:07,206 INFO Connection check task start - -2025-09-22 02:10:07,207 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:07,207 INFO Out dated connection ,size=0 - -2025-09-22 02:10:07,207 INFO Connection check task end - -2025-09-22 02:10:09,156 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:10,208 INFO Connection check task start - -2025-09-22 02:10:10,208 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:10,208 INFO Out dated connection ,size=0 - -2025-09-22 02:10:10,208 INFO Connection check task end - -2025-09-22 02:10:12,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:13,209 INFO Connection check task start - -2025-09-22 02:10:13,209 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:13,209 INFO Out dated connection ,size=0 - -2025-09-22 02:10:13,209 INFO Connection check task end - -2025-09-22 02:10:15,157 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:16,211 INFO Connection check task start - -2025-09-22 02:10:16,212 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:16,213 INFO Out dated connection ,size=0 - -2025-09-22 02:10:16,213 INFO Connection check task end - -2025-09-22 02:10:18,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:19,214 INFO Connection check task start - -2025-09-22 02:10:19,214 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:19,214 INFO Out dated connection ,size=0 - -2025-09-22 02:10:19,214 INFO Connection check task end - -2025-09-22 02:10:21,159 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:22,215 INFO Connection check task start - -2025-09-22 02:10:22,215 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:22,215 INFO Out dated connection ,size=0 - -2025-09-22 02:10:22,216 INFO Connection check task end - -2025-09-22 02:10:24,177 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:25,216 INFO Connection check task start - -2025-09-22 02:10:25,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:25,216 INFO Out dated connection ,size=0 - -2025-09-22 02:10:25,216 INFO Connection check task end - -2025-09-22 02:10:27,178 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:28,216 INFO Connection check task start - -2025-09-22 02:10:28,216 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:28,216 INFO Out dated connection ,size=0 - -2025-09-22 02:10:28,217 INFO Connection check task end - -2025-09-22 02:10:30,179 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:31,218 INFO Connection check task start - -2025-09-22 02:10:31,218 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:31,218 INFO Out dated connection ,size=0 - -2025-09-22 02:10:31,218 INFO Connection check task end - -2025-09-22 02:10:33,180 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:34,219 INFO Connection check task start - -2025-09-22 02:10:34,219 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:34,219 INFO Out dated connection ,size=0 - -2025-09-22 02:10:34,219 INFO Connection check task end - -2025-09-22 02:10:36,181 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:37,221 INFO Connection check task start - -2025-09-22 02:10:37,221 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:37,221 INFO Out dated connection ,size=0 - -2025-09-22 02:10:37,221 INFO Connection check task end - -2025-09-22 02:10:39,185 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:40,222 INFO Connection check task start - -2025-09-22 02:10:40,222 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:40,222 INFO Out dated connection ,size=0 - -2025-09-22 02:10:40,222 INFO Connection check task end - -2025-09-22 02:10:42,186 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:43,223 INFO Connection check task start - -2025-09-22 02:10:43,223 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:43,223 INFO Out dated connection ,size=0 - -2025-09-22 02:10:43,223 INFO Connection check task end - -2025-09-22 02:10:45,187 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:46,223 INFO Connection check task start - -2025-09-22 02:10:46,224 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:46,224 INFO Out dated connection ,size=0 - -2025-09-22 02:10:46,224 INFO Connection check task end - -2025-09-22 02:10:48,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:49,225 INFO Connection check task start - -2025-09-22 02:10:49,225 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:49,225 INFO Out dated connection ,size=0 - -2025-09-22 02:10:49,225 INFO Connection check task end - -2025-09-22 02:10:51,188 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:52,226 INFO Connection check task start - -2025-09-22 02:10:52,226 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:52,226 INFO Out dated connection ,size=0 - -2025-09-22 02:10:52,226 INFO Connection check task end - -2025-09-22 02:10:54,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:55,227 INFO Connection check task start - -2025-09-22 02:10:55,227 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:55,227 INFO Out dated connection ,size=0 - -2025-09-22 02:10:55,227 INFO Connection check task end - -2025-09-22 02:10:57,190 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:10:58,228 INFO Connection check task start - -2025-09-22 02:10:58,228 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:10:58,228 INFO Out dated connection ,size=0 - -2025-09-22 02:10:58,228 INFO Connection check task end - -2025-09-22 02:11:00,191 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:01,229 INFO Connection check task start - -2025-09-22 02:11:01,229 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:01,229 INFO Out dated connection ,size=0 - -2025-09-22 02:11:01,229 INFO Connection check task end - -2025-09-22 02:11:03,192 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:04,230 INFO Connection check task start - -2025-09-22 02:11:04,231 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:04,231 INFO Out dated connection ,size=0 - -2025-09-22 02:11:04,231 INFO Connection check task end - -2025-09-22 02:11:06,193 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:07,232 INFO Connection check task start - -2025-09-22 02:11:07,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:07,232 INFO Out dated connection ,size=0 - -2025-09-22 02:11:07,232 INFO Connection check task end - -2025-09-22 02:11:09,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:10,232 INFO Connection check task start - -2025-09-22 02:11:10,232 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:10,232 INFO Out dated connection ,size=0 - -2025-09-22 02:11:10,232 INFO Connection check task end - -2025-09-22 02:11:12,195 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:13,233 INFO Connection check task start - -2025-09-22 02:11:13,233 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:13,233 INFO Out dated connection ,size=0 - -2025-09-22 02:11:13,233 INFO Connection check task end - -2025-09-22 02:11:15,196 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:16,234 INFO Connection check task start - -2025-09-22 02:11:16,234 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:16,234 INFO Out dated connection ,size=0 - -2025-09-22 02:11:16,234 INFO Connection check task end - -2025-09-22 02:11:18,197 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:19,235 INFO Connection check task start - -2025-09-22 02:11:19,235 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:19,235 INFO Out dated connection ,size=0 - -2025-09-22 02:11:19,235 INFO Connection check task end - -2025-09-22 02:11:21,198 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:22,236 INFO Connection check task start - -2025-09-22 02:11:22,237 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:22,237 INFO Out dated connection ,size=0 - -2025-09-22 02:11:22,237 INFO Connection check task end - -2025-09-22 02:11:24,199 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:25,238 INFO Connection check task start - -2025-09-22 02:11:25,238 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:25,238 INFO Out dated connection ,size=0 - -2025-09-22 02:11:25,238 INFO Connection check task end - -2025-09-22 02:11:27,200 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:28,239 INFO Connection check task start - -2025-09-22 02:11:28,239 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:28,239 INFO Out dated connection ,size=0 - -2025-09-22 02:11:28,239 INFO Connection check task end - -2025-09-22 02:11:30,201 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:31,240 INFO Connection check task start - -2025-09-22 02:11:31,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:31,240 INFO Out dated connection ,size=0 - -2025-09-22 02:11:31,240 INFO Connection check task end - -2025-09-22 02:11:33,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:34,240 INFO Connection check task start - -2025-09-22 02:11:34,240 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:34,240 INFO Out dated connection ,size=0 - -2025-09-22 02:11:34,241 INFO Connection check task end - -2025-09-22 02:11:36,202 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:37,241 INFO Connection check task start - -2025-09-22 02:11:37,241 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:37,241 INFO Out dated connection ,size=0 - -2025-09-22 02:11:37,241 INFO Connection check task end - -2025-09-22 02:11:39,203 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:40,243 INFO Connection check task start - -2025-09-22 02:11:40,243 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:40,243 INFO Out dated connection ,size=0 - -2025-09-22 02:11:40,243 INFO Connection check task end - -2025-09-22 02:11:42,204 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:43,244 INFO Connection check task start - -2025-09-22 02:11:43,244 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:43,244 INFO Out dated connection ,size=0 - -2025-09-22 02:11:43,244 INFO Connection check task end - -2025-09-22 02:11:45,205 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:46,245 INFO Connection check task start - -2025-09-22 02:11:46,245 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:46,245 INFO Out dated connection ,size=0 - -2025-09-22 02:11:46,245 INFO Connection check task end - -2025-09-22 02:11:48,226 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:49,246 INFO Connection check task start - -2025-09-22 02:11:49,247 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:49,247 INFO Out dated connection ,size=0 - -2025-09-22 02:11:49,247 INFO Connection check task end - -2025-09-22 02:11:51,227 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:52,248 INFO Connection check task start - -2025-09-22 02:11:52,248 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:52,248 INFO Out dated connection ,size=0 - -2025-09-22 02:11:52,248 INFO Connection check task end - -2025-09-22 02:11:54,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:55,248 INFO Connection check task start - -2025-09-22 02:11:55,249 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:55,249 INFO Out dated connection ,size=0 - -2025-09-22 02:11:55,249 INFO Connection check task end - -2025-09-22 02:11:57,229 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:11:58,250 INFO Connection check task start - -2025-09-22 02:11:58,250 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:11:58,250 INFO Out dated connection ,size=0 - -2025-09-22 02:11:58,250 INFO Connection check task end - -2025-09-22 02:12:00,231 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:01,251 INFO Connection check task start - -2025-09-22 02:12:01,251 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:01,251 INFO Out dated connection ,size=0 - -2025-09-22 02:12:01,251 INFO Connection check task end - -2025-09-22 02:12:03,232 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:04,252 INFO Connection check task start - -2025-09-22 02:12:04,252 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:04,252 INFO Out dated connection ,size=0 - -2025-09-22 02:12:04,252 INFO Connection check task end - -2025-09-22 02:12:06,233 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:07,252 INFO Connection check task start - -2025-09-22 02:12:07,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:07,253 INFO Out dated connection ,size=0 - -2025-09-22 02:12:07,253 INFO Connection check task end - -2025-09-22 02:12:09,235 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:10,253 INFO Connection check task start - -2025-09-22 02:12:10,253 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:10,253 INFO Out dated connection ,size=0 - -2025-09-22 02:12:10,253 INFO Connection check task end - -2025-09-22 02:12:12,236 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:13,255 INFO Connection check task start - -2025-09-22 02:12:13,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:13,255 INFO Out dated connection ,size=0 - -2025-09-22 02:12:13,255 INFO Connection check task end - -2025-09-22 02:12:15,237 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:16,255 INFO Connection check task start - -2025-09-22 02:12:16,255 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:16,255 INFO Out dated connection ,size=0 - -2025-09-22 02:12:16,255 INFO Connection check task end - -2025-09-22 02:12:18,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:19,256 INFO Connection check task start - -2025-09-22 02:12:19,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:19,257 INFO Out dated connection ,size=0 - -2025-09-22 02:12:19,257 INFO Connection check task end - -2025-09-22 02:12:21,238 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:22,257 INFO Connection check task start - -2025-09-22 02:12:22,257 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:22,257 INFO Out dated connection ,size=0 - -2025-09-22 02:12:22,257 INFO Connection check task end - -2025-09-22 02:12:24,239 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:25,258 INFO Connection check task start - -2025-09-22 02:12:25,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:25,259 INFO Out dated connection ,size=0 - -2025-09-22 02:12:25,259 INFO Connection check task end - -2025-09-22 02:12:27,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:28,259 INFO Connection check task start - -2025-09-22 02:12:28,259 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:28,259 INFO Out dated connection ,size=0 - -2025-09-22 02:12:28,259 INFO Connection check task end - -2025-09-22 02:12:30,241 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:31,260 INFO Connection check task start - -2025-09-22 02:12:31,260 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:31,260 INFO Out dated connection ,size=0 - -2025-09-22 02:12:31,260 INFO Connection check task end - -2025-09-22 02:12:33,242 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:34,261 INFO Connection check task start - -2025-09-22 02:12:34,261 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:34,261 INFO Out dated connection ,size=0 - -2025-09-22 02:12:34,262 INFO Connection check task end - -2025-09-22 02:12:36,243 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:37,262 INFO Connection check task start - -2025-09-22 02:12:37,262 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:37,262 INFO Out dated connection ,size=0 - -2025-09-22 02:12:37,262 INFO Connection check task end - -2025-09-22 02:12:39,244 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:40,263 INFO Connection check task start - -2025-09-22 02:12:40,263 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:40,263 INFO Out dated connection ,size=0 - -2025-09-22 02:12:40,263 INFO Connection check task end - -2025-09-22 02:12:42,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:43,264 INFO Connection check task start - -2025-09-22 02:12:43,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:43,264 INFO Out dated connection ,size=0 - -2025-09-22 02:12:43,264 INFO Connection check task end - -2025-09-22 02:12:45,246 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:46,264 INFO Connection check task start - -2025-09-22 02:12:46,264 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:46,264 INFO Out dated connection ,size=0 - -2025-09-22 02:12:46,264 INFO Connection check task end - -2025-09-22 02:12:48,248 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:49,265 INFO Connection check task start - -2025-09-22 02:12:49,265 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:49,265 INFO Out dated connection ,size=0 - -2025-09-22 02:12:49,265 INFO Connection check task end - -2025-09-22 02:12:51,250 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:52,266 INFO Connection check task start - -2025-09-22 02:12:52,266 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:52,266 INFO Out dated connection ,size=0 - -2025-09-22 02:12:52,266 INFO Connection check task end - -2025-09-22 02:12:54,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:55,267 INFO Connection check task start - -2025-09-22 02:12:55,267 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:55,267 INFO Out dated connection ,size=0 - -2025-09-22 02:12:55,268 INFO Connection check task end - -2025-09-22 02:12:57,251 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:12:58,268 INFO Connection check task start - -2025-09-22 02:12:58,269 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:12:58,269 INFO Out dated connection ,size=0 - -2025-09-22 02:12:58,269 INFO Connection check task end - -2025-09-22 02:13:00,252 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:01,270 INFO Connection check task start - -2025-09-22 02:13:01,270 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:01,270 INFO Out dated connection ,size=0 - -2025-09-22 02:13:01,270 INFO Connection check task end - -2025-09-22 02:13:03,253 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:04,315 INFO Connection check task start - -2025-09-22 02:13:04,315 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:04,315 INFO Out dated connection ,size=0 - -2025-09-22 02:13:04,315 INFO Connection check task end - -2025-09-22 02:13:06,254 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:07,316 INFO Connection check task start - -2025-09-22 02:13:07,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:07,316 INFO Out dated connection ,size=0 - -2025-09-22 02:13:07,316 INFO Connection check task end - -2025-09-22 02:13:09,255 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:10,316 INFO Connection check task start - -2025-09-22 02:13:10,316 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:10,316 INFO Out dated connection ,size=0 - -2025-09-22 02:13:10,316 INFO Connection check task end - -2025-09-22 02:13:12,256 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:13,316 INFO Connection check task start - -2025-09-22 02:13:13,317 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:13,317 INFO Out dated connection ,size=0 - -2025-09-22 02:13:13,317 INFO Connection check task end - -2025-09-22 02:13:15,257 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:16,318 INFO Connection check task start - -2025-09-22 02:13:16,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:16,318 INFO Out dated connection ,size=0 - -2025-09-22 02:13:16,318 INFO Connection check task end - -2025-09-22 02:13:18,258 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:19,318 INFO Connection check task start - -2025-09-22 02:13:19,318 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:19,318 INFO Out dated connection ,size=0 - -2025-09-22 02:13:19,318 INFO Connection check task end - -2025-09-22 02:13:21,259 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:22,319 INFO Connection check task start - -2025-09-22 02:13:22,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:22,319 INFO Out dated connection ,size=0 - -2025-09-22 02:13:22,319 INFO Connection check task end - -2025-09-22 02:13:24,260 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:25,319 INFO Connection check task start - -2025-09-22 02:13:25,319 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:25,320 INFO Out dated connection ,size=0 - -2025-09-22 02:13:25,320 INFO Connection check task end - -2025-09-22 02:13:27,261 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:28,320 INFO Connection check task start - -2025-09-22 02:13:28,320 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:28,320 INFO Out dated connection ,size=0 - -2025-09-22 02:13:28,320 INFO Connection check task end - -2025-09-22 02:13:30,262 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:31,321 INFO Connection check task start - -2025-09-22 02:13:31,321 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:31,321 INFO Out dated connection ,size=0 - -2025-09-22 02:13:31,321 INFO Connection check task end - -2025-09-22 02:13:33,263 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:34,322 INFO Connection check task start - -2025-09-22 02:13:34,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:34,322 INFO Out dated connection ,size=0 - -2025-09-22 02:13:34,322 INFO Connection check task end - -2025-09-22 02:13:36,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:37,322 INFO Connection check task start - -2025-09-22 02:13:37,322 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:37,322 INFO Out dated connection ,size=0 - -2025-09-22 02:13:37,322 INFO Connection check task end - -2025-09-22 02:13:39,265 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:40,324 INFO Connection check task start - -2025-09-22 02:13:40,325 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:40,325 INFO Out dated connection ,size=0 - -2025-09-22 02:13:40,325 INFO Connection check task end - -2025-09-22 02:13:42,266 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:43,326 INFO Connection check task start - -2025-09-22 02:13:43,326 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:43,327 INFO Out dated connection ,size=0 - -2025-09-22 02:13:43,327 INFO Connection check task end - -2025-09-22 02:13:45,267 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:46,327 INFO Connection check task start - -2025-09-22 02:13:46,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:46,327 INFO Out dated connection ,size=0 - -2025-09-22 02:13:46,327 INFO Connection check task end - -2025-09-22 02:13:48,268 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:49,327 INFO Connection check task start - -2025-09-22 02:13:49,327 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:49,327 INFO Out dated connection ,size=0 - -2025-09-22 02:13:49,328 INFO Connection check task end - -2025-09-22 02:13:51,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:52,328 INFO Connection check task start - -2025-09-22 02:13:52,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:52,328 INFO Out dated connection ,size=0 - -2025-09-22 02:13:52,328 INFO Connection check task end - -2025-09-22 02:13:54,270 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:55,328 INFO Connection check task start - -2025-09-22 02:13:55,328 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:55,329 INFO Out dated connection ,size=0 - -2025-09-22 02:13:55,329 INFO Connection check task end - -2025-09-22 02:13:57,271 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:13:58,329 INFO Connection check task start - -2025-09-22 02:13:58,330 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:13:58,330 INFO Out dated connection ,size=0 - -2025-09-22 02:13:58,330 INFO Connection check task end - -2025-09-22 02:14:00,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:01,330 INFO Connection check task start - -2025-09-22 02:14:01,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:01,331 INFO Out dated connection ,size=0 - -2025-09-22 02:14:01,331 INFO Connection check task end - -2025-09-22 02:14:03,272 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:04,331 INFO Connection check task start - -2025-09-22 02:14:04,331 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:04,331 INFO Out dated connection ,size=0 - -2025-09-22 02:14:04,332 INFO Connection check task end - -2025-09-22 02:14:06,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:07,333 INFO Connection check task start - -2025-09-22 02:14:07,333 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:07,333 INFO Out dated connection ,size=0 - -2025-09-22 02:14:07,333 INFO Connection check task end - -2025-09-22 02:14:09,273 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:10,393 INFO Connection check task start - -2025-09-22 02:14:10,400 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:10,400 INFO Out dated connection ,size=0 - -2025-09-22 02:14:10,401 INFO Connection check task end - -2025-09-22 02:14:12,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:13,401 INFO Connection check task start - -2025-09-22 02:14:13,401 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:13,401 INFO Out dated connection ,size=0 - -2025-09-22 02:14:13,401 INFO Connection check task end - -2025-09-22 02:14:15,274 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:16,402 INFO Connection check task start - -2025-09-22 02:14:16,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:16,403 INFO Out dated connection ,size=0 - -2025-09-22 02:14:16,403 INFO Connection check task end - -2025-09-22 02:14:18,275 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:19,403 INFO Connection check task start - -2025-09-22 02:14:19,403 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:19,403 INFO Out dated connection ,size=0 - -2025-09-22 02:14:19,403 INFO Connection check task end - -2025-09-22 02:14:21,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:22,404 INFO Connection check task start - -2025-09-22 02:14:22,404 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:22,404 INFO Out dated connection ,size=0 - -2025-09-22 02:14:22,404 INFO Connection check task end - -2025-09-22 02:14:24,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:25,405 INFO Connection check task start - -2025-09-22 02:14:25,405 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:25,405 INFO Out dated connection ,size=0 - -2025-09-22 02:14:25,405 INFO Connection check task end - -2025-09-22 02:14:27,276 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:28,405 INFO Connection check task start - -2025-09-22 02:14:28,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:28,406 INFO Out dated connection ,size=0 - -2025-09-22 02:14:28,406 INFO Connection check task end - -2025-09-22 02:14:30,277 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:31,406 INFO Connection check task start - -2025-09-22 02:14:31,406 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:31,406 INFO Out dated connection ,size=0 - -2025-09-22 02:14:31,406 INFO Connection check task end - -2025-09-22 02:14:33,278 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:34,406 INFO Connection check task start - -2025-09-22 02:14:34,407 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:34,407 INFO Out dated connection ,size=0 - -2025-09-22 02:14:34,407 INFO Connection check task end - -2025-09-22 02:14:36,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:37,408 INFO Connection check task start - -2025-09-22 02:14:37,408 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:37,408 INFO Out dated connection ,size=0 - -2025-09-22 02:14:37,409 INFO Connection check task end - -2025-09-22 02:14:39,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:40,409 INFO Connection check task start - -2025-09-22 02:14:40,409 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:40,409 INFO Out dated connection ,size=0 - -2025-09-22 02:14:40,409 INFO Connection check task end - -2025-09-22 02:14:42,279 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:43,410 INFO Connection check task start - -2025-09-22 02:14:43,410 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:43,411 INFO Out dated connection ,size=0 - -2025-09-22 02:14:43,411 INFO Connection check task end - -2025-09-22 02:14:45,280 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:46,412 INFO Connection check task start - -2025-09-22 02:14:46,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:46,412 INFO Out dated connection ,size=0 - -2025-09-22 02:14:46,412 INFO Connection check task end - -2025-09-22 02:14:48,281 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:49,412 INFO Connection check task start - -2025-09-22 02:14:49,412 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:49,412 INFO Out dated connection ,size=0 - -2025-09-22 02:14:49,412 INFO Connection check task end - -2025-09-22 02:14:51,282 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:52,414 INFO Connection check task start - -2025-09-22 02:14:52,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:52,414 INFO Out dated connection ,size=0 - -2025-09-22 02:14:52,414 INFO Connection check task end - -2025-09-22 02:14:54,283 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:55,414 INFO Connection check task start - -2025-09-22 02:14:55,414 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:55,414 INFO Out dated connection ,size=0 - -2025-09-22 02:14:55,415 INFO Connection check task end - -2025-09-22 02:14:57,284 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:14:58,416 INFO Connection check task start - -2025-09-22 02:14:58,416 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:14:58,416 INFO Out dated connection ,size=0 - -2025-09-22 02:14:58,416 INFO Connection check task end - -2025-09-22 02:15:00,285 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:01,418 INFO Connection check task start - -2025-09-22 02:15:01,418 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:01,418 INFO Out dated connection ,size=0 - -2025-09-22 02:15:01,418 INFO Connection check task end - -2025-09-22 02:15:03,286 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:04,419 INFO Connection check task start - -2025-09-22 02:15:04,419 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:04,419 INFO Out dated connection ,size=0 - -2025-09-22 02:15:04,419 INFO Connection check task end - -2025-09-22 02:15:06,310 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:07,420 INFO Connection check task start - -2025-09-22 02:15:07,420 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:07,421 INFO Out dated connection ,size=0 - -2025-09-22 02:15:07,421 INFO Connection check task end - -2025-09-22 02:15:09,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:10,421 INFO Connection check task start - -2025-09-22 02:15:10,421 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:10,421 INFO Out dated connection ,size=0 - -2025-09-22 02:15:10,421 INFO Connection check task end - -2025-09-22 02:15:12,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:13,421 INFO Connection check task start - -2025-09-22 02:15:13,422 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:13,422 INFO Out dated connection ,size=0 - -2025-09-22 02:15:13,422 INFO Connection check task end - -2025-09-22 02:15:15,311 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:16,423 INFO Connection check task start - -2025-09-22 02:15:16,423 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:16,423 INFO Out dated connection ,size=0 - -2025-09-22 02:15:16,423 INFO Connection check task end - -2025-09-22 02:15:18,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:19,424 INFO Connection check task start - -2025-09-22 02:15:19,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:19,424 INFO Out dated connection ,size=0 - -2025-09-22 02:15:19,424 INFO Connection check task end - -2025-09-22 02:15:21,312 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:22,424 INFO Connection check task start - -2025-09-22 02:15:22,424 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:22,424 INFO Out dated connection ,size=0 - -2025-09-22 02:15:22,424 INFO Connection check task end - -2025-09-22 02:15:24,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:25,426 INFO Connection check task start - -2025-09-22 02:15:25,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:25,426 INFO Out dated connection ,size=0 - -2025-09-22 02:15:25,426 INFO Connection check task end - -2025-09-22 02:15:27,313 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:28,426 INFO Connection check task start - -2025-09-22 02:15:28,426 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:28,426 INFO Out dated connection ,size=0 - -2025-09-22 02:15:28,426 INFO Connection check task end - -2025-09-22 02:15:30,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:31,427 INFO Connection check task start - -2025-09-22 02:15:31,427 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:31,427 INFO Out dated connection ,size=0 - -2025-09-22 02:15:31,427 INFO Connection check task end - -2025-09-22 02:15:33,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:34,428 INFO Connection check task start - -2025-09-22 02:15:34,428 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:34,428 INFO Out dated connection ,size=0 - -2025-09-22 02:15:34,428 INFO Connection check task end - -2025-09-22 02:15:36,314 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:37,429 INFO Connection check task start - -2025-09-22 02:15:37,429 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:37,429 INFO Out dated connection ,size=0 - -2025-09-22 02:15:37,429 INFO Connection check task end - -2025-09-22 02:15:39,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:40,430 INFO Connection check task start - -2025-09-22 02:15:40,430 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:40,430 INFO Out dated connection ,size=0 - -2025-09-22 02:15:40,430 INFO Connection check task end - -2025-09-22 02:15:42,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:43,432 INFO Connection check task start - -2025-09-22 02:15:43,432 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:43,432 INFO Out dated connection ,size=0 - -2025-09-22 02:15:43,432 INFO Connection check task end - -2025-09-22 02:15:45,316 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:46,433 INFO Connection check task start - -2025-09-22 02:15:46,433 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:46,433 INFO Out dated connection ,size=0 - -2025-09-22 02:15:46,433 INFO Connection check task end - -2025-09-22 02:15:48,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:49,434 INFO Connection check task start - -2025-09-22 02:15:49,434 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:49,434 INFO Out dated connection ,size=0 - -2025-09-22 02:15:49,434 INFO Connection check task end - -2025-09-22 02:15:51,317 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:52,436 INFO Connection check task start - -2025-09-22 02:15:52,436 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:52,436 INFO Out dated connection ,size=0 - -2025-09-22 02:15:52,436 INFO Connection check task end - -2025-09-22 02:15:54,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:55,437 INFO Connection check task start - -2025-09-22 02:15:55,437 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:55,437 INFO Out dated connection ,size=0 - -2025-09-22 02:15:55,437 INFO Connection check task end - -2025-09-22 02:15:57,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:15:58,437 INFO Connection check task start - -2025-09-22 02:15:58,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:15:58,438 INFO Out dated connection ,size=0 - -2025-09-22 02:15:58,438 INFO Connection check task end - -2025-09-22 02:16:00,318 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:01,438 INFO Connection check task start - -2025-09-22 02:16:01,438 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:01,438 INFO Out dated connection ,size=0 - -2025-09-22 02:16:01,438 INFO Connection check task end - -2025-09-22 02:16:03,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:04,438 INFO Connection check task start - -2025-09-22 02:16:04,439 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:04,439 INFO Out dated connection ,size=0 - -2025-09-22 02:16:04,439 INFO Connection check task end - -2025-09-22 02:16:06,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:07,440 INFO Connection check task start - -2025-09-22 02:16:07,440 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:07,440 INFO Out dated connection ,size=0 - -2025-09-22 02:16:07,440 INFO Connection check task end - -2025-09-22 02:16:09,319 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:10,441 INFO Connection check task start - -2025-09-22 02:16:10,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:10,442 INFO Out dated connection ,size=0 - -2025-09-22 02:16:10,442 INFO Connection check task end - -2025-09-22 02:16:12,320 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:13,442 INFO Connection check task start - -2025-09-22 02:16:13,442 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:13,442 INFO Out dated connection ,size=0 - -2025-09-22 02:16:13,442 INFO Connection check task end - -2025-09-22 02:16:15,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:16,443 INFO Connection check task start - -2025-09-22 02:16:16,443 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:16,443 INFO Out dated connection ,size=0 - -2025-09-22 02:16:16,443 INFO Connection check task end - -2025-09-22 02:16:18,321 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:19,444 INFO Connection check task start - -2025-09-22 02:16:19,444 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:19,445 INFO Out dated connection ,size=0 - -2025-09-22 02:16:19,445 INFO Connection check task end - -2025-09-22 02:16:21,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:22,445 INFO Connection check task start - -2025-09-22 02:16:22,445 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:22,445 INFO Out dated connection ,size=0 - -2025-09-22 02:16:22,446 INFO Connection check task end - -2025-09-22 02:16:24,322 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:25,447 INFO Connection check task start - -2025-09-22 02:16:25,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:25,447 INFO Out dated connection ,size=0 - -2025-09-22 02:16:25,447 INFO Connection check task end - -2025-09-22 02:16:27,323 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:28,447 INFO Connection check task start - -2025-09-22 02:16:28,447 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:28,447 INFO Out dated connection ,size=0 - -2025-09-22 02:16:28,448 INFO Connection check task end - -2025-09-22 02:16:30,324 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:31,448 INFO Connection check task start - -2025-09-22 02:16:31,448 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:31,449 INFO Out dated connection ,size=0 - -2025-09-22 02:16:31,449 INFO Connection check task end - -2025-09-22 02:16:33,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:34,449 INFO Connection check task start - -2025-09-22 02:16:34,449 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:34,449 INFO Out dated connection ,size=0 - -2025-09-22 02:16:34,449 INFO Connection check task end - -2025-09-22 02:16:36,325 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:37,449 INFO Connection check task start - -2025-09-22 02:16:37,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:37,450 INFO Out dated connection ,size=0 - -2025-09-22 02:16:37,450 INFO Connection check task end - -2025-09-22 02:16:39,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:40,450 INFO Connection check task start - -2025-09-22 02:16:40,450 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:40,450 INFO Out dated connection ,size=0 - -2025-09-22 02:16:40,450 INFO Connection check task end - -2025-09-22 02:16:42,327 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:43,451 INFO Connection check task start - -2025-09-22 02:16:43,451 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:43,451 INFO Out dated connection ,size=0 - -2025-09-22 02:16:43,451 INFO Connection check task end - -2025-09-22 02:16:45,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:46,452 INFO Connection check task start - -2025-09-22 02:16:46,452 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:46,452 INFO Out dated connection ,size=0 - -2025-09-22 02:16:46,452 INFO Connection check task end - -2025-09-22 02:16:48,328 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:49,452 INFO Connection check task start - -2025-09-22 02:16:49,453 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:49,453 INFO Out dated connection ,size=0 - -2025-09-22 02:16:49,453 INFO Connection check task end - -2025-09-22 02:16:51,329 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:52,454 INFO Connection check task start - -2025-09-22 02:16:52,454 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:52,454 INFO Out dated connection ,size=0 - -2025-09-22 02:16:52,454 INFO Connection check task end - -2025-09-22 02:16:54,330 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:55,455 INFO Connection check task start - -2025-09-22 02:16:55,455 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:55,455 INFO Out dated connection ,size=0 - -2025-09-22 02:16:55,455 INFO Connection check task end - -2025-09-22 02:16:57,331 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:16:58,456 INFO Connection check task start - -2025-09-22 02:16:58,456 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:16:58,456 INFO Out dated connection ,size=0 - -2025-09-22 02:16:58,456 INFO Connection check task end - -2025-09-22 02:17:00,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:01,457 INFO Connection check task start - -2025-09-22 02:17:01,457 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:01,457 INFO Out dated connection ,size=0 - -2025-09-22 02:17:01,457 INFO Connection check task end - -2025-09-22 02:17:03,332 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:04,458 INFO Connection check task start - -2025-09-22 02:17:04,458 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:04,458 INFO Out dated connection ,size=0 - -2025-09-22 02:17:04,458 INFO Connection check task end - -2025-09-22 02:17:06,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:07,459 INFO Connection check task start - -2025-09-22 02:17:07,459 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:07,459 INFO Out dated connection ,size=0 - -2025-09-22 02:17:07,459 INFO Connection check task end - -2025-09-22 02:17:09,333 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:10,460 INFO Connection check task start - -2025-09-22 02:17:10,460 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:10,461 INFO Out dated connection ,size=0 - -2025-09-22 02:17:10,461 INFO Connection check task end - -2025-09-22 02:17:12,334 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:13,461 INFO Connection check task start - -2025-09-22 02:17:13,461 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:13,461 INFO Out dated connection ,size=0 - -2025-09-22 02:17:13,461 INFO Connection check task end - -2025-09-22 02:17:15,335 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:16,462 INFO Connection check task start - -2025-09-22 02:17:16,462 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:16,462 INFO Out dated connection ,size=0 - -2025-09-22 02:17:16,462 INFO Connection check task end - -2025-09-22 02:17:18,336 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:19,463 INFO Connection check task start - -2025-09-22 02:17:19,463 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:19,463 INFO Out dated connection ,size=0 - -2025-09-22 02:17:19,463 INFO Connection check task end - -2025-09-22 02:17:21,337 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:22,464 INFO Connection check task start - -2025-09-22 02:17:22,464 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:22,464 INFO Out dated connection ,size=0 - -2025-09-22 02:17:22,464 INFO Connection check task end - -2025-09-22 02:17:24,338 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:25,465 INFO Connection check task start - -2025-09-22 02:17:25,465 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:25,465 INFO Out dated connection ,size=0 - -2025-09-22 02:17:25,465 INFO Connection check task end - -2025-09-22 02:17:27,339 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:28,465 INFO Connection check task start - -2025-09-22 02:17:28,466 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:28,466 INFO Out dated connection ,size=0 - -2025-09-22 02:17:28,466 INFO Connection check task end - -2025-09-22 02:17:30,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:31,467 INFO Connection check task start - -2025-09-22 02:17:31,467 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:31,467 INFO Out dated connection ,size=0 - -2025-09-22 02:17:31,467 INFO Connection check task end - -2025-09-22 02:17:33,340 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:34,468 INFO Connection check task start - -2025-09-22 02:17:34,468 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:34,468 INFO Out dated connection ,size=0 - -2025-09-22 02:17:34,468 INFO Connection check task end - -2025-09-22 02:17:36,341 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:37,469 INFO Connection check task start - -2025-09-22 02:17:37,469 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:37,469 INFO Out dated connection ,size=0 - -2025-09-22 02:17:37,469 INFO Connection check task end - -2025-09-22 02:17:39,342 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:40,470 INFO Connection check task start - -2025-09-22 02:17:40,470 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:40,470 INFO Out dated connection ,size=0 - -2025-09-22 02:17:40,470 INFO Connection check task end - -2025-09-22 02:17:42,343 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:43,472 INFO Connection check task start - -2025-09-22 02:17:43,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:43,472 INFO Out dated connection ,size=0 - -2025-09-22 02:17:43,472 INFO Connection check task end - -2025-09-22 02:17:45,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:46,472 INFO Connection check task start - -2025-09-22 02:17:46,472 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:46,472 INFO Out dated connection ,size=0 - -2025-09-22 02:17:46,473 INFO Connection check task end - -2025-09-22 02:17:48,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:49,473 INFO Connection check task start - -2025-09-22 02:17:49,473 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:49,473 INFO Out dated connection ,size=0 - -2025-09-22 02:17:49,473 INFO Connection check task end - -2025-09-22 02:17:51,344 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:52,474 INFO Connection check task start - -2025-09-22 02:17:52,474 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:52,474 INFO Out dated connection ,size=0 - -2025-09-22 02:17:52,474 INFO Connection check task end - -2025-09-22 02:17:54,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:55,475 INFO Connection check task start - -2025-09-22 02:17:55,475 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:55,475 INFO Out dated connection ,size=0 - -2025-09-22 02:17:55,475 INFO Connection check task end - -2025-09-22 02:17:57,345 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:17:58,475 INFO Connection check task start - -2025-09-22 02:17:58,476 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:17:58,476 INFO Out dated connection ,size=0 - -2025-09-22 02:17:58,476 INFO Connection check task end - -2025-09-22 02:18:00,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:01,477 INFO Connection check task start - -2025-09-22 02:18:01,477 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:01,477 INFO Out dated connection ,size=0 - -2025-09-22 02:18:01,477 INFO Connection check task end - -2025-09-22 02:18:03,346 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:04,477 INFO Connection check task start - -2025-09-22 02:18:04,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:04,478 INFO Out dated connection ,size=0 - -2025-09-22 02:18:04,478 INFO Connection check task end - -2025-09-22 02:18:06,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:07,478 INFO Connection check task start - -2025-09-22 02:18:07,478 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:07,478 INFO Out dated connection ,size=0 - -2025-09-22 02:18:07,478 INFO Connection check task end - -2025-09-22 02:18:09,347 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:10,479 INFO Connection check task start - -2025-09-22 02:18:10,479 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:10,479 INFO Out dated connection ,size=0 - -2025-09-22 02:18:10,479 INFO Connection check task end - -2025-09-22 02:18:12,348 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:13,480 INFO Connection check task start - -2025-09-22 02:18:13,480 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:13,480 INFO Out dated connection ,size=0 - -2025-09-22 02:18:13,480 INFO Connection check task end - -2025-09-22 02:18:15,349 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:16,481 INFO Connection check task start - -2025-09-22 02:18:16,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:16,482 INFO Out dated connection ,size=0 - -2025-09-22 02:18:16,482 INFO Connection check task end - -2025-09-22 02:18:18,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:19,482 INFO Connection check task start - -2025-09-22 02:18:19,482 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:19,482 INFO Out dated connection ,size=0 - -2025-09-22 02:18:19,482 INFO Connection check task end - -2025-09-22 02:18:21,350 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:22,483 INFO Connection check task start - -2025-09-22 02:18:22,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:22,484 INFO Out dated connection ,size=0 - -2025-09-22 02:18:22,484 INFO Connection check task end - -2025-09-22 02:18:24,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:25,484 INFO Connection check task start - -2025-09-22 02:18:25,484 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:25,484 INFO Out dated connection ,size=0 - -2025-09-22 02:18:25,484 INFO Connection check task end - -2025-09-22 02:18:27,352 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:28,485 INFO Connection check task start - -2025-09-22 02:18:28,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:28,485 INFO Out dated connection ,size=0 - -2025-09-22 02:18:28,485 INFO Connection check task end - -2025-09-22 02:18:30,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:31,485 INFO Connection check task start - -2025-09-22 02:18:31,485 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:31,485 INFO Out dated connection ,size=0 - -2025-09-22 02:18:31,485 INFO Connection check task end - -2025-09-22 02:18:33,353 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:34,486 INFO Connection check task start - -2025-09-22 02:18:34,486 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:34,487 INFO Out dated connection ,size=0 - -2025-09-22 02:18:34,487 INFO Connection check task end - -2025-09-22 02:18:36,354 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:37,487 INFO Connection check task start - -2025-09-22 02:18:37,487 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:37,487 INFO Out dated connection ,size=0 - -2025-09-22 02:18:37,487 INFO Connection check task end - -2025-09-22 02:18:39,355 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:40,488 INFO Connection check task start - -2025-09-22 02:18:40,488 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:40,488 INFO Out dated connection ,size=0 - -2025-09-22 02:18:40,488 INFO Connection check task end - -2025-09-22 02:18:42,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:43,488 INFO Connection check task start - -2025-09-22 02:18:43,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:43,489 INFO Out dated connection ,size=0 - -2025-09-22 02:18:43,489 INFO Connection check task end - -2025-09-22 02:18:45,356 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:46,489 INFO Connection check task start - -2025-09-22 02:18:46,489 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:46,489 INFO Out dated connection ,size=0 - -2025-09-22 02:18:46,489 INFO Connection check task end - -2025-09-22 02:18:48,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:49,490 INFO Connection check task start - -2025-09-22 02:18:49,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:49,491 INFO Out dated connection ,size=0 - -2025-09-22 02:18:49,491 INFO Connection check task end - -2025-09-22 02:18:51,358 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:52,491 INFO Connection check task start - -2025-09-22 02:18:52,491 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:52,491 INFO Out dated connection ,size=0 - -2025-09-22 02:18:52,491 INFO Connection check task end - -2025-09-22 02:18:54,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:55,491 INFO Connection check task start - -2025-09-22 02:18:55,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:55,492 INFO Out dated connection ,size=0 - -2025-09-22 02:18:55,492 INFO Connection check task end - -2025-09-22 02:18:57,360 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:18:58,492 INFO Connection check task start - -2025-09-22 02:18:58,492 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:18:58,492 INFO Out dated connection ,size=0 - -2025-09-22 02:18:58,492 INFO Connection check task end - -2025-09-22 02:19:00,362 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:01,493 INFO Connection check task start - -2025-09-22 02:19:01,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:01,493 INFO Out dated connection ,size=0 - -2025-09-22 02:19:01,493 INFO Connection check task end - -2025-09-22 02:19:03,363 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:04,493 INFO Connection check task start - -2025-09-22 02:19:04,493 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:04,494 INFO Out dated connection ,size=0 - -2025-09-22 02:19:04,494 INFO Connection check task end - -2025-09-22 02:19:06,364 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:07,494 INFO Connection check task start - -2025-09-22 02:19:07,495 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:07,495 INFO Out dated connection ,size=0 - -2025-09-22 02:19:07,495 INFO Connection check task end - -2025-09-22 02:19:09,365 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:10,496 INFO Connection check task start - -2025-09-22 02:19:10,496 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:10,496 INFO Out dated connection ,size=0 - -2025-09-22 02:19:10,496 INFO Connection check task end - -2025-09-22 02:19:12,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:13,497 INFO Connection check task start - -2025-09-22 02:19:13,497 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:13,497 INFO Out dated connection ,size=0 - -2025-09-22 02:19:13,497 INFO Connection check task end - -2025-09-22 02:19:15,367 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:16,498 INFO Connection check task start - -2025-09-22 02:19:16,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:16,498 INFO Out dated connection ,size=0 - -2025-09-22 02:19:16,498 INFO Connection check task end - -2025-09-22 02:19:18,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:19,498 INFO Connection check task start - -2025-09-22 02:19:19,498 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:19,499 INFO Out dated connection ,size=0 - -2025-09-22 02:19:19,499 INFO Connection check task end - -2025-09-22 02:19:21,368 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:22,499 INFO Connection check task start - -2025-09-22 02:19:22,499 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:22,499 INFO Out dated connection ,size=0 - -2025-09-22 02:19:22,500 INFO Connection check task end - -2025-09-22 02:19:24,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:25,500 INFO Connection check task start - -2025-09-22 02:19:25,500 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:25,500 INFO Out dated connection ,size=0 - -2025-09-22 02:19:25,500 INFO Connection check task end - -2025-09-22 02:19:27,369 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:28,501 INFO Connection check task start - -2025-09-22 02:19:28,501 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:28,501 INFO Out dated connection ,size=0 - -2025-09-22 02:19:28,502 INFO Connection check task end - -2025-09-22 02:19:30,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:31,563 INFO Connection check task start - -2025-09-22 02:19:31,565 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:31,565 INFO Out dated connection ,size=0 - -2025-09-22 02:19:31,565 INFO Connection check task end - -2025-09-22 02:19:33,370 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:34,566 INFO Connection check task start - -2025-09-22 02:19:34,566 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:34,566 INFO Out dated connection ,size=0 - -2025-09-22 02:19:34,566 INFO Connection check task end - -2025-09-22 02:19:36,371 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:37,567 INFO Connection check task start - -2025-09-22 02:19:37,567 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:37,567 INFO Out dated connection ,size=0 - -2025-09-22 02:19:37,567 INFO Connection check task end - -2025-09-22 02:19:39,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:40,568 INFO Connection check task start - -2025-09-22 02:19:40,568 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:40,568 INFO Out dated connection ,size=0 - -2025-09-22 02:19:40,568 INFO Connection check task end - -2025-09-22 02:19:42,372 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:43,570 INFO Connection check task start - -2025-09-22 02:19:43,570 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:43,570 INFO Out dated connection ,size=0 - -2025-09-22 02:19:43,570 INFO Connection check task end - -2025-09-22 02:19:45,373 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:46,571 INFO Connection check task start - -2025-09-22 02:19:46,571 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:46,571 INFO Out dated connection ,size=0 - -2025-09-22 02:19:46,571 INFO Connection check task end - -2025-09-22 02:19:48,374 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:49,572 INFO Connection check task start - -2025-09-22 02:19:49,572 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:49,572 INFO Out dated connection ,size=0 - -2025-09-22 02:19:49,572 INFO Connection check task end - -2025-09-22 02:19:51,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:52,573 INFO Connection check task start - -2025-09-22 02:19:52,573 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:52,573 INFO Out dated connection ,size=0 - -2025-09-22 02:19:52,573 INFO Connection check task end - -2025-09-22 02:19:54,376 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:55,574 INFO Connection check task start - -2025-09-22 02:19:55,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:55,574 INFO Out dated connection ,size=0 - -2025-09-22 02:19:55,574 INFO Connection check task end - -2025-09-22 02:19:57,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:19:58,574 INFO Connection check task start - -2025-09-22 02:19:58,574 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:19:58,574 INFO Out dated connection ,size=0 - -2025-09-22 02:19:58,574 INFO Connection check task end - -2025-09-22 02:20:00,377 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:01,575 INFO Connection check task start - -2025-09-22 02:20:01,575 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:01,575 INFO Out dated connection ,size=0 - -2025-09-22 02:20:01,575 INFO Connection check task end - -2025-09-22 02:20:03,378 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:04,576 INFO Connection check task start - -2025-09-22 02:20:04,576 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:04,576 INFO Out dated connection ,size=0 - -2025-09-22 02:20:04,576 INFO Connection check task end - -2025-09-22 02:20:06,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:07,576 INFO Connection check task start - -2025-09-22 02:20:07,577 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:07,577 INFO Out dated connection ,size=0 - -2025-09-22 02:20:07,577 INFO Connection check task end - -2025-09-22 02:20:09,380 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:10,578 INFO Connection check task start - -2025-09-22 02:20:10,578 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:10,578 INFO Out dated connection ,size=0 - -2025-09-22 02:20:10,578 INFO Connection check task end - -2025-09-22 02:20:12,381 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:13,579 INFO Connection check task start - -2025-09-22 02:20:13,579 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:13,579 INFO Out dated connection ,size=0 - -2025-09-22 02:20:13,579 INFO Connection check task end - -2025-09-22 02:20:15,382 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:16,580 INFO Connection check task start - -2025-09-22 02:20:16,580 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:16,580 INFO Out dated connection ,size=0 - -2025-09-22 02:20:16,580 INFO Connection check task end - -2025-09-22 02:20:18,383 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:19,581 INFO Connection check task start - -2025-09-22 02:20:19,581 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:19,581 INFO Out dated connection ,size=0 - -2025-09-22 02:20:19,581 INFO Connection check task end - -2025-09-22 02:20:21,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:22,582 INFO Connection check task start - -2025-09-22 02:20:22,582 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:22,582 INFO Out dated connection ,size=0 - -2025-09-22 02:20:22,582 INFO Connection check task end - -2025-09-22 02:20:24,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:25,583 INFO Connection check task start - -2025-09-22 02:20:25,583 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:25,583 INFO Out dated connection ,size=0 - -2025-09-22 02:20:25,583 INFO Connection check task end - -2025-09-22 02:20:27,385 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:28,584 INFO Connection check task start - -2025-09-22 02:20:28,584 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:28,584 INFO Out dated connection ,size=0 - -2025-09-22 02:20:28,584 INFO Connection check task end - -2025-09-22 02:20:30,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:31,585 INFO Connection check task start - -2025-09-22 02:20:31,585 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:31,585 INFO Out dated connection ,size=0 - -2025-09-22 02:20:31,585 INFO Connection check task end - -2025-09-22 02:20:33,386 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:34,585 INFO Connection check task start - -2025-09-22 02:20:34,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:34,586 INFO Out dated connection ,size=0 - -2025-09-22 02:20:34,586 INFO Connection check task end - -2025-09-22 02:20:36,388 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:37,586 INFO Connection check task start - -2025-09-22 02:20:37,586 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:37,586 INFO Out dated connection ,size=0 - -2025-09-22 02:20:37,586 INFO Connection check task end - -2025-09-22 02:20:39,389 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:40,587 INFO Connection check task start - -2025-09-22 02:20:40,587 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:40,588 INFO Out dated connection ,size=0 - -2025-09-22 02:20:40,588 INFO Connection check task end - -2025-09-22 02:20:42,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:43,588 INFO Connection check task start - -2025-09-22 02:20:43,589 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:43,589 INFO Out dated connection ,size=0 - -2025-09-22 02:20:43,589 INFO Connection check task end - -2025-09-22 02:20:45,390 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:46,589 INFO Connection check task start - -2025-09-22 02:20:46,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:46,590 INFO Out dated connection ,size=0 - -2025-09-22 02:20:46,590 INFO Connection check task end - -2025-09-22 02:20:48,391 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:49,590 INFO Connection check task start - -2025-09-22 02:20:49,590 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:49,590 INFO Out dated connection ,size=0 - -2025-09-22 02:20:49,590 INFO Connection check task end - -2025-09-22 02:20:51,392 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:52,591 INFO Connection check task start - -2025-09-22 02:20:52,591 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:52,591 INFO Out dated connection ,size=0 - -2025-09-22 02:20:52,591 INFO Connection check task end - -2025-09-22 02:20:54,393 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:55,592 INFO Connection check task start - -2025-09-22 02:20:55,592 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:55,592 INFO Out dated connection ,size=0 - -2025-09-22 02:20:55,592 INFO Connection check task end - -2025-09-22 02:20:57,394 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:20:58,594 INFO Connection check task start - -2025-09-22 02:20:58,594 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:20:58,594 INFO Out dated connection ,size=0 - -2025-09-22 02:20:58,594 INFO Connection check task end - -2025-09-22 02:21:00,395 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:01,595 INFO Connection check task start - -2025-09-22 02:21:01,595 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:01,595 INFO Out dated connection ,size=0 - -2025-09-22 02:21:01,595 INFO Connection check task end - -2025-09-22 02:21:03,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:04,596 INFO Connection check task start - -2025-09-22 02:21:04,596 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:04,596 INFO Out dated connection ,size=0 - -2025-09-22 02:21:04,596 INFO Connection check task end - -2025-09-22 02:21:06,396 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:07,597 INFO Connection check task start - -2025-09-22 02:21:07,597 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:07,597 INFO Out dated connection ,size=0 - -2025-09-22 02:21:07,598 INFO Connection check task end - -2025-09-22 02:21:09,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:10,598 INFO Connection check task start - -2025-09-22 02:21:10,598 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:10,598 INFO Out dated connection ,size=0 - -2025-09-22 02:21:10,598 INFO Connection check task end - -2025-09-22 02:21:12,397 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:13,599 INFO Connection check task start - -2025-09-22 02:21:13,599 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:13,599 INFO Out dated connection ,size=0 - -2025-09-22 02:21:13,599 INFO Connection check task end - -2025-09-22 02:21:15,398 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:16,600 INFO Connection check task start - -2025-09-22 02:21:16,600 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:16,600 INFO Out dated connection ,size=0 - -2025-09-22 02:21:16,600 INFO Connection check task end - -2025-09-22 02:21:18,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:19,601 INFO Connection check task start - -2025-09-22 02:21:19,601 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:19,601 INFO Out dated connection ,size=0 - -2025-09-22 02:21:19,601 INFO Connection check task end - -2025-09-22 02:21:21,399 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:22,602 INFO Connection check task start - -2025-09-22 02:21:22,602 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:22,602 INFO Out dated connection ,size=0 - -2025-09-22 02:21:22,602 INFO Connection check task end - -2025-09-22 02:21:24,401 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:25,603 INFO Connection check task start - -2025-09-22 02:21:25,603 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:25,603 INFO Out dated connection ,size=0 - -2025-09-22 02:21:25,603 INFO Connection check task end - -2025-09-22 02:21:27,402 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:28,604 INFO Connection check task start - -2025-09-22 02:21:28,604 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:28,604 INFO Out dated connection ,size=0 - -2025-09-22 02:21:28,604 INFO Connection check task end - -2025-09-22 02:21:30,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:31,605 INFO Connection check task start - -2025-09-22 02:21:31,605 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:31,605 INFO Out dated connection ,size=0 - -2025-09-22 02:21:31,605 INFO Connection check task end - -2025-09-22 02:21:33,403 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:34,606 INFO Connection check task start - -2025-09-22 02:21:34,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:34,606 INFO Out dated connection ,size=0 - -2025-09-22 02:21:34,606 INFO Connection check task end - -2025-09-22 02:21:36,404 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:37,606 INFO Connection check task start - -2025-09-22 02:21:37,606 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:37,607 INFO Out dated connection ,size=0 - -2025-09-22 02:21:37,607 INFO Connection check task end - -2025-09-22 02:21:39,405 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:40,607 INFO Connection check task start - -2025-09-22 02:21:40,607 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:40,607 INFO Out dated connection ,size=0 - -2025-09-22 02:21:40,607 INFO Connection check task end - -2025-09-22 02:21:42,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:43,608 INFO Connection check task start - -2025-09-22 02:21:43,608 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:43,608 INFO Out dated connection ,size=0 - -2025-09-22 02:21:43,608 INFO Connection check task end - -2025-09-22 02:21:45,406 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:46,609 INFO Connection check task start - -2025-09-22 02:21:46,609 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:46,609 INFO Out dated connection ,size=0 - -2025-09-22 02:21:46,609 INFO Connection check task end - -2025-09-22 02:21:48,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:49,610 INFO Connection check task start - -2025-09-22 02:21:49,610 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:49,610 INFO Out dated connection ,size=0 - -2025-09-22 02:21:49,610 INFO Connection check task end - -2025-09-22 02:21:51,408 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:52,611 INFO Connection check task start - -2025-09-22 02:21:52,611 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:52,611 INFO Out dated connection ,size=0 - -2025-09-22 02:21:52,612 INFO Connection check task end - -2025-09-22 02:21:54,409 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:55,612 INFO Connection check task start - -2025-09-22 02:21:55,612 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:55,612 INFO Out dated connection ,size=0 - -2025-09-22 02:21:55,612 INFO Connection check task end - -2025-09-22 02:21:57,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:21:58,613 INFO Connection check task start - -2025-09-22 02:21:58,613 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:21:58,613 INFO Out dated connection ,size=0 - -2025-09-22 02:21:58,613 INFO Connection check task end - -2025-09-22 02:22:00,410 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:01,614 INFO Connection check task start - -2025-09-22 02:22:01,614 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:01,615 INFO Out dated connection ,size=0 - -2025-09-22 02:22:01,615 INFO Connection check task end - -2025-09-22 02:22:03,411 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:04,615 INFO Connection check task start - -2025-09-22 02:22:04,615 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:04,615 INFO Out dated connection ,size=0 - -2025-09-22 02:22:04,615 INFO Connection check task end - -2025-09-22 02:22:06,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:07,616 INFO Connection check task start - -2025-09-22 02:22:07,616 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:07,616 INFO Out dated connection ,size=0 - -2025-09-22 02:22:07,616 INFO Connection check task end - -2025-09-22 02:22:09,412 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:10,617 INFO Connection check task start - -2025-09-22 02:22:10,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:10,617 INFO Out dated connection ,size=0 - -2025-09-22 02:22:10,617 INFO Connection check task end - -2025-09-22 02:22:12,413 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:13,617 INFO Connection check task start - -2025-09-22 02:22:13,617 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:13,618 INFO Out dated connection ,size=0 - -2025-09-22 02:22:13,618 INFO Connection check task end - -2025-09-22 02:22:15,414 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:16,618 INFO Connection check task start - -2025-09-22 02:22:16,619 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:16,619 INFO Out dated connection ,size=0 - -2025-09-22 02:22:16,619 INFO Connection check task end - -2025-09-22 02:22:18,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:19,620 INFO Connection check task start - -2025-09-22 02:22:19,620 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:19,620 INFO Out dated connection ,size=0 - -2025-09-22 02:22:19,620 INFO Connection check task end - -2025-09-22 02:22:21,415 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:22,621 INFO Connection check task start - -2025-09-22 02:22:22,621 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:22,621 INFO Out dated connection ,size=0 - -2025-09-22 02:22:22,621 INFO Connection check task end - -2025-09-22 02:22:24,416 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:25,622 INFO Connection check task start - -2025-09-22 02:22:25,622 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:25,622 INFO Out dated connection ,size=0 - -2025-09-22 02:22:25,622 INFO Connection check task end - -2025-09-22 02:22:27,417 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:28,622 INFO Connection check task start - -2025-09-22 02:22:28,623 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:28,623 INFO Out dated connection ,size=0 - -2025-09-22 02:22:28,623 INFO Connection check task end - -2025-09-22 02:22:30,418 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:31,624 INFO Connection check task start - -2025-09-22 02:22:31,624 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:31,624 INFO Out dated connection ,size=0 - -2025-09-22 02:22:31,624 INFO Connection check task end - -2025-09-22 02:22:33,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:34,625 INFO Connection check task start - -2025-09-22 02:22:34,626 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:34,626 INFO Out dated connection ,size=0 - -2025-09-22 02:22:34,626 INFO Connection check task end - -2025-09-22 02:22:36,419 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:37,627 INFO Connection check task start - -2025-09-22 02:22:37,627 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:37,627 INFO Out dated connection ,size=0 - -2025-09-22 02:22:37,627 INFO Connection check task end - -2025-09-22 02:22:39,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:40,628 INFO Connection check task start - -2025-09-22 02:22:40,628 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:40,628 INFO Out dated connection ,size=0 - -2025-09-22 02:22:40,628 INFO Connection check task end - -2025-09-22 02:22:42,420 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:43,629 INFO Connection check task start - -2025-09-22 02:22:43,630 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:43,630 INFO Out dated connection ,size=0 - -2025-09-22 02:22:43,630 INFO Connection check task end - -2025-09-22 02:22:45,421 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:46,631 INFO Connection check task start - -2025-09-22 02:22:46,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:46,632 INFO Out dated connection ,size=0 - -2025-09-22 02:22:46,632 INFO Connection check task end - -2025-09-22 02:22:48,422 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:49,632 INFO Connection check task start - -2025-09-22 02:22:49,632 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:49,632 INFO Out dated connection ,size=0 - -2025-09-22 02:22:49,632 INFO Connection check task end - -2025-09-22 02:22:51,423 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:52,632 INFO Connection check task start - -2025-09-22 02:22:52,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:52,633 INFO Out dated connection ,size=0 - -2025-09-22 02:22:52,633 INFO Connection check task end - -2025-09-22 02:22:54,424 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:55,633 INFO Connection check task start - -2025-09-22 02:22:55,633 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:55,633 INFO Out dated connection ,size=0 - -2025-09-22 02:22:55,633 INFO Connection check task end - -2025-09-22 02:22:57,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:22:58,634 INFO Connection check task start - -2025-09-22 02:22:58,634 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:22:58,634 INFO Out dated connection ,size=0 - -2025-09-22 02:22:58,634 INFO Connection check task end - -2025-09-22 02:23:00,425 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:01,635 INFO Connection check task start - -2025-09-22 02:23:01,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:01,635 INFO Out dated connection ,size=0 - -2025-09-22 02:23:01,635 INFO Connection check task end - -2025-09-22 02:23:03,426 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:04,635 INFO Connection check task start - -2025-09-22 02:23:04,635 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:04,635 INFO Out dated connection ,size=0 - -2025-09-22 02:23:04,635 INFO Connection check task end - -2025-09-22 02:23:06,427 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:07,636 INFO Connection check task start - -2025-09-22 02:23:07,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:07,636 INFO Out dated connection ,size=0 - -2025-09-22 02:23:07,636 INFO Connection check task end - -2025-09-22 02:23:09,428 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:10,636 INFO Connection check task start - -2025-09-22 02:23:10,636 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:10,636 INFO Out dated connection ,size=0 - -2025-09-22 02:23:10,636 INFO Connection check task end - -2025-09-22 02:23:12,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:13,637 INFO Connection check task start - -2025-09-22 02:23:13,637 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:13,637 INFO Out dated connection ,size=0 - -2025-09-22 02:23:13,637 INFO Connection check task end - -2025-09-22 02:23:15,429 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:16,638 INFO Connection check task start - -2025-09-22 02:23:16,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:16,638 INFO Out dated connection ,size=0 - -2025-09-22 02:23:16,638 INFO Connection check task end - -2025-09-22 02:23:18,430 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:19,638 INFO Connection check task start - -2025-09-22 02:23:19,638 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:19,638 INFO Out dated connection ,size=0 - -2025-09-22 02:23:19,638 INFO Connection check task end - -2025-09-22 02:23:21,431 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:22,639 INFO Connection check task start - -2025-09-22 02:23:22,639 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:22,639 INFO Out dated connection ,size=0 - -2025-09-22 02:23:22,639 INFO Connection check task end - -2025-09-22 02:23:24,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:25,640 INFO Connection check task start - -2025-09-22 02:23:25,640 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:25,640 INFO Out dated connection ,size=0 - -2025-09-22 02:23:25,640 INFO Connection check task end - -2025-09-22 02:23:27,432 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:28,641 INFO Connection check task start - -2025-09-22 02:23:28,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:28,641 INFO Out dated connection ,size=0 - -2025-09-22 02:23:28,641 INFO Connection check task end - -2025-09-22 02:23:30,433 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:31,641 INFO Connection check task start - -2025-09-22 02:23:31,641 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:31,642 INFO Out dated connection ,size=0 - -2025-09-22 02:23:31,642 INFO Connection check task end - -2025-09-22 02:23:33,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:34,642 INFO Connection check task start - -2025-09-22 02:23:34,642 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:34,642 INFO Out dated connection ,size=0 - -2025-09-22 02:23:34,642 INFO Connection check task end - -2025-09-22 02:23:36,434 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:37,642 INFO Connection check task start - -2025-09-22 02:23:37,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:37,643 INFO Out dated connection ,size=0 - -2025-09-22 02:23:37,643 INFO Connection check task end - -2025-09-22 02:23:39,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:40,643 INFO Connection check task start - -2025-09-22 02:23:40,643 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:40,643 INFO Out dated connection ,size=0 - -2025-09-22 02:23:40,643 INFO Connection check task end - -2025-09-22 02:23:42,436 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:43,644 INFO Connection check task start - -2025-09-22 02:23:43,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:43,644 INFO Out dated connection ,size=0 - -2025-09-22 02:23:43,644 INFO Connection check task end - -2025-09-22 02:23:45,437 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:46,644 INFO Connection check task start - -2025-09-22 02:23:46,644 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:46,645 INFO Out dated connection ,size=0 - -2025-09-22 02:23:46,645 INFO Connection check task end - -2025-09-22 02:23:48,438 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:49,645 INFO Connection check task start - -2025-09-22 02:23:49,645 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:49,645 INFO Out dated connection ,size=0 - -2025-09-22 02:23:49,645 INFO Connection check task end - -2025-09-22 02:23:51,439 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:52,646 INFO Connection check task start - -2025-09-22 02:23:52,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:52,646 INFO Out dated connection ,size=0 - -2025-09-22 02:23:52,646 INFO Connection check task end - -2025-09-22 02:23:54,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:55,646 INFO Connection check task start - -2025-09-22 02:23:55,646 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:55,647 INFO Out dated connection ,size=0 - -2025-09-22 02:23:55,647 INFO Connection check task end - -2025-09-22 02:23:57,440 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:23:58,647 INFO Connection check task start - -2025-09-22 02:23:58,647 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:23:58,647 INFO Out dated connection ,size=0 - -2025-09-22 02:23:58,648 INFO Connection check task end - -2025-09-22 02:24:00,441 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:01,648 INFO Connection check task start - -2025-09-22 02:24:01,648 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:01,648 INFO Out dated connection ,size=0 - -2025-09-22 02:24:01,648 INFO Connection check task end - -2025-09-22 02:24:03,443 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:04,649 INFO Connection check task start - -2025-09-22 02:24:04,649 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:04,649 INFO Out dated connection ,size=0 - -2025-09-22 02:24:04,649 INFO Connection check task end - -2025-09-22 02:24:06,444 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:07,650 INFO Connection check task start - -2025-09-22 02:24:07,650 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:07,650 INFO Out dated connection ,size=0 - -2025-09-22 02:24:07,650 INFO Connection check task end - -2025-09-22 02:24:09,446 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:10,651 INFO Connection check task start - -2025-09-22 02:24:10,651 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:10,651 INFO Out dated connection ,size=0 - -2025-09-22 02:24:10,651 INFO Connection check task end - -2025-09-22 02:24:12,447 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:13,652 INFO Connection check task start - -2025-09-22 02:24:13,653 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:13,653 INFO Out dated connection ,size=0 - -2025-09-22 02:24:13,653 INFO Connection check task end - -2025-09-22 02:24:15,448 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:16,654 INFO Connection check task start - -2025-09-22 02:24:16,654 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:16,655 INFO Out dated connection ,size=0 - -2025-09-22 02:24:16,655 INFO Connection check task end - -2025-09-22 02:24:18,449 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:19,655 INFO Connection check task start - -2025-09-22 02:24:19,655 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:19,655 INFO Out dated connection ,size=0 - -2025-09-22 02:24:19,655 INFO Connection check task end - -2025-09-22 02:24:21,450 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:22,655 INFO Connection check task start - -2025-09-22 02:24:22,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:22,656 INFO Out dated connection ,size=0 - -2025-09-22 02:24:22,656 INFO Connection check task end - -2025-09-22 02:24:24,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:25,656 INFO Connection check task start - -2025-09-22 02:24:25,656 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:25,656 INFO Out dated connection ,size=0 - -2025-09-22 02:24:25,656 INFO Connection check task end - -2025-09-22 02:24:27,451 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:28,657 INFO Connection check task start - -2025-09-22 02:24:28,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:28,657 INFO Out dated connection ,size=0 - -2025-09-22 02:24:28,657 INFO Connection check task end - -2025-09-22 02:24:30,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:31,657 INFO Connection check task start - -2025-09-22 02:24:31,657 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:31,657 INFO Out dated connection ,size=0 - -2025-09-22 02:24:31,657 INFO Connection check task end - -2025-09-22 02:24:33,452 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:34,658 INFO Connection check task start - -2025-09-22 02:24:34,658 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:34,658 INFO Out dated connection ,size=0 - -2025-09-22 02:24:34,658 INFO Connection check task end - -2025-09-22 02:24:36,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:37,659 INFO Connection check task start - -2025-09-22 02:24:37,659 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:37,659 INFO Out dated connection ,size=0 - -2025-09-22 02:24:37,659 INFO Connection check task end - -2025-09-22 02:24:39,453 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:40,660 INFO Connection check task start - -2025-09-22 02:24:40,660 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:40,660 INFO Out dated connection ,size=0 - -2025-09-22 02:24:40,660 INFO Connection check task end - -2025-09-22 02:24:42,454 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:43,661 INFO Connection check task start - -2025-09-22 02:24:43,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:43,661 INFO Out dated connection ,size=0 - -2025-09-22 02:24:43,661 INFO Connection check task end - -2025-09-22 02:24:45,455 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:46,661 INFO Connection check task start - -2025-09-22 02:24:46,661 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:46,661 INFO Out dated connection ,size=0 - -2025-09-22 02:24:46,661 INFO Connection check task end - -2025-09-22 02:24:48,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:49,662 INFO Connection check task start - -2025-09-22 02:24:49,662 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:49,662 INFO Out dated connection ,size=0 - -2025-09-22 02:24:49,662 INFO Connection check task end - -2025-09-22 02:24:51,456 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:52,663 INFO Connection check task start - -2025-09-22 02:24:52,663 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:52,663 INFO Out dated connection ,size=0 - -2025-09-22 02:24:52,664 INFO Connection check task end - -2025-09-22 02:24:54,458 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:55,664 INFO Connection check task start - -2025-09-22 02:24:55,664 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:55,664 INFO Out dated connection ,size=0 - -2025-09-22 02:24:55,664 INFO Connection check task end - -2025-09-22 02:24:57,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:24:58,668 INFO Connection check task start - -2025-09-22 02:24:58,668 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:24:58,668 INFO Out dated connection ,size=0 - -2025-09-22 02:24:58,668 INFO Connection check task end - -2025-09-22 02:25:00,459 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:01,669 INFO Connection check task start - -2025-09-22 02:25:01,669 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:01,669 INFO Out dated connection ,size=0 - -2025-09-22 02:25:01,669 INFO Connection check task end - -2025-09-22 02:25:03,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:04,670 INFO Connection check task start - -2025-09-22 02:25:04,670 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:04,670 INFO Out dated connection ,size=0 - -2025-09-22 02:25:04,671 INFO Connection check task end - -2025-09-22 02:25:06,460 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:07,672 INFO Connection check task start - -2025-09-22 02:25:07,672 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:07,672 INFO Out dated connection ,size=0 - -2025-09-22 02:25:07,672 INFO Connection check task end - -2025-09-22 02:25:09,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:10,673 INFO Connection check task start - -2025-09-22 02:25:10,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:10,673 INFO Out dated connection ,size=0 - -2025-09-22 02:25:10,673 INFO Connection check task end - -2025-09-22 02:25:12,461 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:13,673 INFO Connection check task start - -2025-09-22 02:25:13,673 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:13,674 INFO Out dated connection ,size=0 - -2025-09-22 02:25:13,674 INFO Connection check task end - -2025-09-22 02:25:15,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:16,674 INFO Connection check task start - -2025-09-22 02:25:16,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:16,674 INFO Out dated connection ,size=0 - -2025-09-22 02:25:16,674 INFO Connection check task end - -2025-09-22 02:25:18,462 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:19,674 INFO Connection check task start - -2025-09-22 02:25:19,674 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:19,674 INFO Out dated connection ,size=0 - -2025-09-22 02:25:19,674 INFO Connection check task end - -2025-09-22 02:25:21,463 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:22,675 INFO Connection check task start - -2025-09-22 02:25:22,675 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:22,675 INFO Out dated connection ,size=0 - -2025-09-22 02:25:22,675 INFO Connection check task end - -2025-09-22 02:25:24,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:25,675 INFO Connection check task start - -2025-09-22 02:25:25,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:25,676 INFO Out dated connection ,size=0 - -2025-09-22 02:25:25,676 INFO Connection check task end - -2025-09-22 02:25:27,464 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:28,676 INFO Connection check task start - -2025-09-22 02:25:28,676 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:28,676 INFO Out dated connection ,size=0 - -2025-09-22 02:25:28,676 INFO Connection check task end - -2025-09-22 02:25:30,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:31,677 INFO Connection check task start - -2025-09-22 02:25:31,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:31,677 INFO Out dated connection ,size=0 - -2025-09-22 02:25:31,677 INFO Connection check task end - -2025-09-22 02:25:33,465 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:34,677 INFO Connection check task start - -2025-09-22 02:25:34,677 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:34,677 INFO Out dated connection ,size=0 - -2025-09-22 02:25:34,678 INFO Connection check task end - -2025-09-22 02:25:36,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:37,678 INFO Connection check task start - -2025-09-22 02:25:37,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:37,679 INFO Out dated connection ,size=0 - -2025-09-22 02:25:37,679 INFO Connection check task end - -2025-09-22 02:25:39,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:40,679 INFO Connection check task start - -2025-09-22 02:25:40,679 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:40,679 INFO Out dated connection ,size=0 - -2025-09-22 02:25:40,679 INFO Connection check task end - -2025-09-22 02:25:42,466 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:43,680 INFO Connection check task start - -2025-09-22 02:25:43,680 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:43,680 INFO Out dated connection ,size=0 - -2025-09-22 02:25:43,680 INFO Connection check task end - -2025-09-22 02:25:45,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:46,681 INFO Connection check task start - -2025-09-22 02:25:46,681 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:46,681 INFO Out dated connection ,size=0 - -2025-09-22 02:25:46,681 INFO Connection check task end - -2025-09-22 02:25:48,467 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:49,682 INFO Connection check task start - -2025-09-22 02:25:49,682 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:49,682 INFO Out dated connection ,size=0 - -2025-09-22 02:25:49,682 INFO Connection check task end - -2025-09-22 02:25:51,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:52,683 INFO Connection check task start - -2025-09-22 02:25:52,684 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:52,684 INFO Out dated connection ,size=0 - -2025-09-22 02:25:52,684 INFO Connection check task end - -2025-09-22 02:25:54,469 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:55,685 INFO Connection check task start - -2025-09-22 02:25:55,685 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:55,685 INFO Out dated connection ,size=0 - -2025-09-22 02:25:55,685 INFO Connection check task end - -2025-09-22 02:25:57,470 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:25:58,686 INFO Connection check task start - -2025-09-22 02:25:58,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:25:58,686 INFO Out dated connection ,size=0 - -2025-09-22 02:25:58,686 INFO Connection check task end - -2025-09-22 02:26:00,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:01,686 INFO Connection check task start - -2025-09-22 02:26:01,686 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:01,686 INFO Out dated connection ,size=0 - -2025-09-22 02:26:01,687 INFO Connection check task end - -2025-09-22 02:26:03,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:04,687 INFO Connection check task start - -2025-09-22 02:26:04,687 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:04,687 INFO Out dated connection ,size=0 - -2025-09-22 02:26:04,687 INFO Connection check task end - -2025-09-22 02:26:06,472 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:07,688 INFO Connection check task start - -2025-09-22 02:26:07,689 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:07,689 INFO Out dated connection ,size=0 - -2025-09-22 02:26:07,689 INFO Connection check task end - -2025-09-22 02:26:09,473 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:10,690 INFO Connection check task start - -2025-09-22 02:26:10,691 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:10,691 INFO Out dated connection ,size=0 - -2025-09-22 02:26:10,691 INFO Connection check task end - -2025-09-22 02:26:12,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:13,691 INFO Connection check task start - -2025-09-22 02:26:13,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:13,692 INFO Out dated connection ,size=0 - -2025-09-22 02:26:13,692 INFO Connection check task end - -2025-09-22 02:26:15,474 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:16,692 INFO Connection check task start - -2025-09-22 02:26:16,692 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:16,692 INFO Out dated connection ,size=0 - -2025-09-22 02:26:16,692 INFO Connection check task end - -2025-09-22 02:26:18,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:19,693 INFO Connection check task start - -2025-09-22 02:26:19,693 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:19,693 INFO Out dated connection ,size=0 - -2025-09-22 02:26:19,693 INFO Connection check task end - -2025-09-22 02:26:21,475 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:22,694 INFO Connection check task start - -2025-09-22 02:26:22,694 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:22,694 INFO Out dated connection ,size=0 - -2025-09-22 02:26:22,694 INFO Connection check task end - -2025-09-22 02:26:24,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:25,695 INFO Connection check task start - -2025-09-22 02:26:25,695 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:25,695 INFO Out dated connection ,size=0 - -2025-09-22 02:26:25,695 INFO Connection check task end - -2025-09-22 02:26:27,477 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:28,696 INFO Connection check task start - -2025-09-22 02:26:28,696 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:28,696 INFO Out dated connection ,size=0 - -2025-09-22 02:26:28,696 INFO Connection check task end - -2025-09-22 02:26:30,478 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:31,697 INFO Connection check task start - -2025-09-22 02:26:31,697 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:31,697 INFO Out dated connection ,size=0 - -2025-09-22 02:26:31,697 INFO Connection check task end - -2025-09-22 02:26:33,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:34,698 INFO Connection check task start - -2025-09-22 02:26:34,698 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:34,698 INFO Out dated connection ,size=0 - -2025-09-22 02:26:34,698 INFO Connection check task end - -2025-09-22 02:26:36,479 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:37,698 INFO Connection check task start - -2025-09-22 02:26:37,699 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:37,699 INFO Out dated connection ,size=0 - -2025-09-22 02:26:37,699 INFO Connection check task end - -2025-09-22 02:26:39,480 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:40,700 INFO Connection check task start - -2025-09-22 02:26:40,700 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:40,700 INFO Out dated connection ,size=0 - -2025-09-22 02:26:40,700 INFO Connection check task end - -2025-09-22 02:26:42,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:43,701 INFO Connection check task start - -2025-09-22 02:26:43,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:43,702 INFO Out dated connection ,size=0 - -2025-09-22 02:26:43,702 INFO Connection check task end - -2025-09-22 02:26:45,481 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:46,702 INFO Connection check task start - -2025-09-22 02:26:46,702 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:46,702 INFO Out dated connection ,size=0 - -2025-09-22 02:26:46,702 INFO Connection check task end - -2025-09-22 02:26:48,482 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:49,703 INFO Connection check task start - -2025-09-22 02:26:49,703 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:49,703 INFO Out dated connection ,size=0 - -2025-09-22 02:26:49,704 INFO Connection check task end - -2025-09-22 02:26:51,483 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:52,704 INFO Connection check task start - -2025-09-22 02:26:52,704 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:52,704 INFO Out dated connection ,size=0 - -2025-09-22 02:26:52,704 INFO Connection check task end - -2025-09-22 02:26:54,484 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:55,705 INFO Connection check task start - -2025-09-22 02:26:55,705 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:55,705 INFO Out dated connection ,size=0 - -2025-09-22 02:26:55,705 INFO Connection check task end - -2025-09-22 02:26:57,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:26:58,706 INFO Connection check task start - -2025-09-22 02:26:58,706 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:26:58,706 INFO Out dated connection ,size=0 - -2025-09-22 02:26:58,706 INFO Connection check task end - -2025-09-22 02:27:00,485 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:01,706 INFO Connection check task start - -2025-09-22 02:27:01,707 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:01,707 INFO Out dated connection ,size=0 - -2025-09-22 02:27:01,707 INFO Connection check task end - -2025-09-22 02:27:03,486 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:04,707 INFO Connection check task start - -2025-09-22 02:27:04,708 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:04,708 INFO Out dated connection ,size=0 - -2025-09-22 02:27:04,708 INFO Connection check task end - -2025-09-22 02:27:06,487 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:07,709 INFO Connection check task start - -2025-09-22 02:27:07,709 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:07,709 INFO Out dated connection ,size=0 - -2025-09-22 02:27:07,709 INFO Connection check task end - -2025-09-22 02:27:09,488 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:10,710 INFO Connection check task start - -2025-09-22 02:27:10,710 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:10,710 INFO Out dated connection ,size=0 - -2025-09-22 02:27:10,710 INFO Connection check task end - -2025-09-22 02:27:12,489 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:13,711 INFO Connection check task start - -2025-09-22 02:27:13,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:13,711 INFO Out dated connection ,size=0 - -2025-09-22 02:27:13,711 INFO Connection check task end - -2025-09-22 02:27:15,490 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:16,711 INFO Connection check task start - -2025-09-22 02:27:16,711 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:16,712 INFO Out dated connection ,size=0 - -2025-09-22 02:27:16,712 INFO Connection check task end - -2025-09-22 02:27:18,491 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:19,712 INFO Connection check task start - -2025-09-22 02:27:19,712 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:19,712 INFO Out dated connection ,size=0 - -2025-09-22 02:27:19,712 INFO Connection check task end - -2025-09-22 02:27:21,492 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:22,713 INFO Connection check task start - -2025-09-22 02:27:22,713 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:22,713 INFO Out dated connection ,size=0 - -2025-09-22 02:27:22,713 INFO Connection check task end - -2025-09-22 02:27:24,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:25,713 INFO Connection check task start - -2025-09-22 02:27:25,714 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:25,714 INFO Out dated connection ,size=0 - -2025-09-22 02:27:25,714 INFO Connection check task end - -2025-09-22 02:27:27,493 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:28,714 INFO Connection check task start - -2025-09-22 02:27:28,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:28,715 INFO Out dated connection ,size=0 - -2025-09-22 02:27:28,715 INFO Connection check task end - -2025-09-22 02:27:30,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:31,715 INFO Connection check task start - -2025-09-22 02:27:31,715 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:31,715 INFO Out dated connection ,size=0 - -2025-09-22 02:27:31,715 INFO Connection check task end - -2025-09-22 02:27:33,494 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:34,716 INFO Connection check task start - -2025-09-22 02:27:34,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:34,716 INFO Out dated connection ,size=0 - -2025-09-22 02:27:34,716 INFO Connection check task end - -2025-09-22 02:27:36,495 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:37,716 INFO Connection check task start - -2025-09-22 02:27:37,716 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:37,716 INFO Out dated connection ,size=0 - -2025-09-22 02:27:37,716 INFO Connection check task end - -2025-09-22 02:27:39,496 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:40,717 INFO Connection check task start - -2025-09-22 02:27:40,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:40,718 INFO Out dated connection ,size=0 - -2025-09-22 02:27:40,718 INFO Connection check task end - -2025-09-22 02:27:42,497 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:43,718 INFO Connection check task start - -2025-09-22 02:27:43,718 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:43,718 INFO Out dated connection ,size=0 - -2025-09-22 02:27:43,718 INFO Connection check task end - -2025-09-22 02:27:45,498 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:46,719 INFO Connection check task start - -2025-09-22 02:27:46,719 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:46,719 INFO Out dated connection ,size=0 - -2025-09-22 02:27:46,719 INFO Connection check task end - -2025-09-22 02:27:48,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:49,720 INFO Connection check task start - -2025-09-22 02:27:49,720 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:49,720 INFO Out dated connection ,size=0 - -2025-09-22 02:27:49,720 INFO Connection check task end - -2025-09-22 02:27:51,499 INFO ConnectionMetrics, totalCount = 0, detail = {long_connection=0, long_polling=0} - -2025-09-22 02:27:52,721 INFO Connection check task start - -2025-09-22 02:27:52,721 INFO Long connection metrics detail ,Total count =0, sdkCount=0,clusterCount=0 - -2025-09-22 02:27:52,721 INFO Out dated connection ,size=0 - -2025-09-22 02:27:52,721 INFO Connection check task end - diff --git a/docker/nacos/standalone-logs/plugin-control-tps.log b/docker/nacos/standalone-logs/plugin-control-tps.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/plugin-control.log b/docker/nacos/standalone-logs/plugin-control.log deleted file mode 100644 index a904b64..0000000 --- a/docker/nacos/standalone-logs/plugin-control.log +++ /dev/null @@ -1,416 +0,0 @@ -2025-09-22 01:17:08,887 INFO Not configure type of control plugin, no limit control for current node. - -2025-09-22 01:17:08,890 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@75b5d09, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@4104b6a6] - -2025-09-22 01:17:08,891 INFO No connection rule content found ,use default empty rule - -2025-09-22 01:17:08,903 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null - -2025-09-22 01:17:08,903 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:08,903 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null - -2025-09-22 01:17:08,903 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:08,903 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null - -2025-09-22 01:17:08,904 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,049 INFO No tps control rule of ConfigListen found,content =null - -2025-09-22 01:17:14,049 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,049 INFO No tps control rule of ClusterConfigChangeNotify found,content =null - -2025-09-22 01:17:14,049 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,060 INFO No tps control rule of ConfigFuzzyWatch found,content =null - -2025-09-22 01:17:14,060 WARN Tps point for ConfigFuzzyWatch registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,060 INFO No tps control rule of ConfigPublish found,content =null - -2025-09-22 01:17:14,061 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,061 INFO No tps control rule of ConfigQuery found,content =null - -2025-09-22 01:17:14,061 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,061 INFO No tps control rule of ConfigRemove found,content =null - -2025-09-22 01:17:14,061 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,061 INFO No tps control rule of HealthCheck found,content =null - -2025-09-22 01:17:14,061 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,062 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null - -2025-09-22 01:17:14,062 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,062 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null - -2025-09-22 01:17:14,062 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,062 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,063 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null - -2025-09-22 01:17:14,063 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,063 INFO No tps control rule of RemoteNamingServiceQuery found,content =null - -2025-09-22 01:17:14,063 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:14,063 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null - -2025-09-22 01:17:14,063 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,913 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null - -2025-09-22 01:17:18,913 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,913 INFO No tps control rule of NamingServiceQuery found,content =null - -2025-09-22 01:17:18,914 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,914 INFO No tps control rule of NamingServiceRegister found,content =null - -2025-09-22 01:17:18,914 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,914 INFO No tps control rule of NamingServiceDeregister found,content =null - -2025-09-22 01:17:18,914 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,914 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,914 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,914 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,915 INFO No tps control rule of NamingServiceUpdate found,content =null - -2025-09-22 01:17:18,915 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,915 INFO No tps control rule of NamingInstanceQuery found,content =null - -2025-09-22 01:17:18,915 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,915 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,915 INFO No tps control rule of NamingInstanceDeregister found,content =null - -2025-09-22 01:17:18,915 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,915 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,916 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,916 INFO No tps control rule of NamingInstanceRegister found,content =null - -2025-09-22 01:17:18,916 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,916 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,916 INFO No tps control rule of NamingServiceSubscribe found,content =null - -2025-09-22 01:17:18,916 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,916 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,916 INFO No tps control rule of NamingInstanceUpdate found,content =null - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,917 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 INFO No tps control rule of NamingServiceListQuery found,content =null - -2025-09-22 01:17:18,918 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,918 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 INFO No tps control rule of HttpHealthCheck found,content =null - -2025-09-22 01:17:18,919 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:17:18,919 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:08,764 INFO Not configure type of control plugin, no limit control for current node. - -2025-09-22 01:50:08,768 INFO Load connection metrics collector,size=2,[com.alibaba.nacos.config.server.service.LongPollingConnectionMetricsCollector@3e02988, com.alibaba.nacos.core.remote.LongConnectionMetricsCollector@34c3e307] - -2025-09-22 01:50:08,769 INFO No connection rule content found ,use default empty rule - -2025-09-22 01:50:08,780 INFO No tps control rule of CONFIG_PUSH_COUNT found,content =null - -2025-09-22 01:50:08,780 WARN Tps point for CONFIG_PUSH_COUNT registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:08,780 INFO No tps control rule of CONFIG_PUSH_SUCCESS found,content =null - -2025-09-22 01:50:08,780 WARN Tps point for CONFIG_PUSH_SUCCESS registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:08,780 INFO No tps control rule of CONFIG_PUSH_FAIL found,content =null - -2025-09-22 01:50:08,780 WARN Tps point for CONFIG_PUSH_FAIL registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,909 INFO No tps control rule of ConfigListen found,content =null - -2025-09-22 01:50:13,910 WARN Tps point for ConfigListen registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,910 INFO No tps control rule of ClusterConfigChangeNotify found,content =null - -2025-09-22 01:50:13,910 WARN Tps point for ClusterConfigChangeNotify registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,921 INFO No tps control rule of ConfigFuzzyWatch found,content =null - -2025-09-22 01:50:13,921 WARN Tps point for ConfigFuzzyWatch registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,921 INFO No tps control rule of ConfigPublish found,content =null - -2025-09-22 01:50:13,921 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,922 INFO No tps control rule of ConfigQuery found,content =null - -2025-09-22 01:50:13,922 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,922 INFO No tps control rule of ConfigRemove found,content =null - -2025-09-22 01:50:13,922 WARN Tps point for ConfigRemove registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,922 INFO No tps control rule of HealthCheck found,content =null - -2025-09-22 01:50:13,922 WARN Tps point for HealthCheck registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,922 INFO No tps control rule of RemoteNamingInstanceBatchRegister found,content =null - -2025-09-22 01:50:13,922 WARN Tps point for RemoteNamingInstanceBatchRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,923 INFO No tps control rule of RemoteNamingInstanceRegisterDeregister found,content =null - -2025-09-22 01:50:13,923 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,923 WARN Tps point for RemoteNamingInstanceRegisterDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,923 INFO No tps control rule of RemoteNamingServiceListQuery found,content =null - -2025-09-22 01:50:13,923 WARN Tps point for RemoteNamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,923 INFO No tps control rule of RemoteNamingServiceQuery found,content =null - -2025-09-22 01:50:13,923 WARN Tps point for RemoteNamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:13,923 INFO No tps control rule of RemoteNamingServiceSubscribeUnSubscribe found,content =null - -2025-09-22 01:50:13,924 WARN Tps point for RemoteNamingServiceSubscribeUnSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,505 INFO No tps control rule of NamingInstanceRegister found,content =null - -2025-09-22 01:50:17,505 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,505 INFO No tps control rule of NamingInstanceQuery found,content =null - -2025-09-22 01:50:17,505 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,506 INFO No tps control rule of NamingServiceListQuery found,content =null - -2025-09-22 01:50:17,506 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,506 INFO No tps control rule of NamingInstanceMetadataUpdate found,content =null - -2025-09-22 01:50:17,506 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,506 INFO No tps control rule of NamingInstanceUpdate found,content =null - -2025-09-22 01:50:17,506 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,506 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,506 INFO No tps control rule of NamingServiceDeregister found,content =null - -2025-09-22 01:50:17,506 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,506 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,507 INFO No tps control rule of NamingServiceRegister found,content =null - -2025-09-22 01:50:17,507 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,507 INFO No tps control rule of NamingServiceSubscribe found,content =null - -2025-09-22 01:50:17,507 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,507 INFO No tps control rule of NamingServiceUpdate found,content =null - -2025-09-22 01:50:17,507 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,508 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,508 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,508 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,508 WARN Tps point for NamingInstanceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,508 INFO No tps control rule of HttpHealthCheck found,content =null - -2025-09-22 01:50:17,508 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,508 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 INFO No tps control rule of NamingServiceQuery found,content =null - -2025-09-22 01:50:17,509 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for ConfigPublish registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 INFO No tps control rule of NamingInstanceDeregister found,content =null - -2025-09-22 01:50:17,509 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,509 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceMetadataUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingServiceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for HttpHealthCheck registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingInstanceRegister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingServiceSubscribe registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,510 WARN Tps point for NamingServiceDeregister registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,511 WARN Tps point for NamingServiceQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,511 WARN Tps point for ConfigQuery registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,511 WARN Tps point for NamingServiceUpdate registered, But tps control manager is no limit implementation. - -2025-09-22 01:50:17,511 WARN Tps point for NamingServiceListQuery registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,907 INFO No tps control rule of NAMING_RPC_PUSH found,content =null - -2025-09-22 02:01:31,908 WARN Tps point for NAMING_RPC_PUSH registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,908 INFO No tps control rule of NAMING_RPC_PUSH_SUCCESS found,content =null - -2025-09-22 02:01:31,908 WARN Tps point for NAMING_RPC_PUSH_SUCCESS registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,908 INFO No tps control rule of NAMING_RPC_PUSH_FAIL found,content =null - -2025-09-22 02:01:31,908 WARN Tps point for NAMING_RPC_PUSH_FAIL registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,908 INFO No tps control rule of NAMING_UDP_PUSH found,content =null - -2025-09-22 02:01:31,908 WARN Tps point for NAMING_UDP_PUSH registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_UDP_PUSH_SUCCESS found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_UDP_PUSH_SUCCESS registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_UDP_PUSH_FAIL found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_UDP_PUSH_FAIL registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_DISTRO_SYNC found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_DISTRO_SYNC registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_DISTRO_SYNC_SUCCESS found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_DISTRO_SYNC_SUCCESS registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_DISTRO_SYNC_FAIL found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_DISTRO_SYNC_FAIL registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_DISTRO_VERIFY found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_DISTRO_VERIFY registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_DISTRO_VERIFY_SUCCESS found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_DISTRO_VERIFY_SUCCESS registered, But tps control manager is no limit implementation. - -2025-09-22 02:01:31,909 INFO No tps control rule of NAMING_DISTRO_VERIFY_FAIL found,content =null - -2025-09-22 02:01:31,909 WARN Tps point for NAMING_DISTRO_VERIFY_FAIL registered, But tps control manager is no limit implementation. - diff --git a/docker/nacos/standalone-logs/protocol-distro.log b/docker/nacos/standalone-logs/protocol-distro.log deleted file mode 100644 index 589bb3a..0000000 --- a/docker/nacos/standalone-logs/protocol-distro.log +++ /dev/null @@ -1,96 +0,0 @@ -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,892 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,891 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,892 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) -2025-09-22 01:49:55,892 ERROR [TASK-FAILED] java.lang.InterruptedException - -java.lang.InterruptedException: null - at java.base/java.util.concurrent.locks.AbstractQueuedSynchronizer$ConditionObject.await(AbstractQueuedSynchronizer.java:1645) - at java.base/java.util.concurrent.ArrayBlockingQueue.take(ArrayBlockingQueue.java:420) - at com.alibaba.nacos.common.task.engine.TaskExecuteWorker$InnerWorker.run(TaskExecuteWorker.java:118) diff --git a/docker/nacos/standalone-logs/protocol-raft.log b/docker/nacos/standalone-logs/protocol-raft.log deleted file mode 100644 index 8c7c3b1..0000000 --- a/docker/nacos/standalone-logs/protocol-raft.log +++ /dev/null @@ -1,58 +0,0 @@ -2025-09-22 01:17:09,707 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["d97c29d750b4:7848"],"strictMode":false,"selfMember":"d97c29d750b4:7848"} - -2025-09-22 01:17:10,255 INFO ========= The raft protocol is starting... ========= - -2025-09-22 01:17:10,299 INFO ========= The raft protocol start finished... ========= - -2025-09-22 01:17:10,366 INFO create raft group : naming_persistent_service_v2 - -2025-09-22 01:17:11,021 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='d97c29d750b4:7848', term=1, raftClusterInfo=[d97c29d750b4:7848]} - -2025-09-22 01:17:11,050 INFO create raft group : naming_persistent_service - -2025-09-22 01:17:11,232 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='d97c29d750b4:7848', term=1, raftClusterInfo=[d97c29d750b4:7848]} - -2025-09-22 01:17:11,273 INFO create raft group : naming_instance_metadata - -2025-09-22 01:17:11,413 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='d97c29d750b4:7848', term=1, raftClusterInfo=[d97c29d750b4:7848]} - -2025-09-22 01:17:11,414 INFO create raft group : naming_service_metadata - -2025-09-22 01:17:11,553 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='d97c29d750b4:7848', term=1, raftClusterInfo=[d97c29d750b4:7848]} - -2025-09-22 01:17:11,934 INFO create raft group : lock_acquire_service_v2 - -2025-09-22 01:17:12,299 INFO This Raft event changes : RaftEvent{groupId='lock_acquire_service_v2', leader='d97c29d750b4:7848', term=1, raftClusterInfo=[d97c29d750b4:7848]} - -2025-09-22 01:49:55,804 INFO shutdown jraft server - -2025-09-22 01:49:55,805 INFO ========= The raft protocol is starting to close ========= - -2025-09-22 01:49:55,889 INFO ========= The raft protocol has been closed ========= - -2025-09-22 01:50:09,862 INFO Initializes the Raft protocol, raft-config info : {"data":{},"members":["8e5a20eec60e:7848"],"strictMode":false,"selfMember":"8e5a20eec60e:7848"} - -2025-09-22 01:50:10,185 INFO ========= The raft protocol is starting... ========= - -2025-09-22 01:50:10,232 INFO ========= The raft protocol start finished... ========= - -2025-09-22 01:50:10,298 INFO create raft group : naming_persistent_service_v2 - -2025-09-22 01:50:10,877 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service_v2', leader='8e5a20eec60e:7848', term=1, raftClusterInfo=[8e5a20eec60e:7848]} - -2025-09-22 01:50:10,888 INFO create raft group : naming_persistent_service - -2025-09-22 01:50:10,988 INFO This Raft event changes : RaftEvent{groupId='naming_persistent_service', leader='8e5a20eec60e:7848', term=1, raftClusterInfo=[8e5a20eec60e:7848]} - -2025-09-22 01:50:11,019 INFO create raft group : naming_instance_metadata - -2025-09-22 01:50:11,142 INFO create raft group : naming_service_metadata - -2025-09-22 01:50:11,144 INFO This Raft event changes : RaftEvent{groupId='naming_instance_metadata', leader='8e5a20eec60e:7848', term=1, raftClusterInfo=[8e5a20eec60e:7848]} - -2025-09-22 01:50:11,275 INFO This Raft event changes : RaftEvent{groupId='naming_service_metadata', leader='8e5a20eec60e:7848', term=1, raftClusterInfo=[8e5a20eec60e:7848]} - -2025-09-22 01:50:11,614 INFO create raft group : lock_acquire_service_v2 - -2025-09-22 01:50:11,860 INFO This Raft event changes : RaftEvent{groupId='lock_acquire_service_v2', leader='8e5a20eec60e:7848', term=1, raftClusterInfo=[8e5a20eec60e:7848]} - diff --git a/docker/nacos/standalone-logs/remote-digest.log b/docker/nacos/standalone-logs/remote-digest.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/remote-push.log b/docker/nacos/standalone-logs/remote-push.log deleted file mode 100644 index e69de29..0000000 diff --git a/docker/nacos/standalone-logs/remote.log b/docker/nacos/standalone-logs/remote.log deleted file mode 100644 index bf04439..0000000 --- a/docker/nacos/standalone-logs/remote.log +++ /dev/null @@ -1,76 +0,0 @@ -2025-09-22 01:17:08,832 INFO [ClientConnectionEventListenerRegistry] registry listener - ConfigConnectionEventListener - -2025-09-22 01:17:09,113 INFO Nacos GrpcSdkServer Rpc server starting at port 9848 - -2025-09-22 01:17:09,369 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.SdkDefaultTlsProtocolNegotiatorBuilder for type DEFAULT_TLS - -2025-09-22 01:17:09,369 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.ClusterDefaultTlsProtocolNegotiatorBuilder for type CLUSTER_DEFAULT_TLS - -2025-09-22 01:17:09,370 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.server.rpc.protocol.negotiator.type, will use default type nacos.remote.server.rpc.protocol.negotiator.type - -2025-09-22 01:17:09,374 WARN Recommended use 'nacos.remote.server.grpc.sdk.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760 - -2025-09-22 01:17:09,530 INFO Ssl Context auto refresh is not supported. - -2025-09-22 01:17:09,530 INFO Ssl Context auto refresh is not supported. - -2025-09-22 01:17:09,530 INFO RpcServerSslContextRefresher initialization completed. - -2025-09-22 01:17:09,531 INFO Nacos GrpcSdkServer Rpc server started at port 9848 - -2025-09-22 01:17:09,536 INFO Nacos GrpcClusterServer Rpc server starting at port 9849 - -2025-09-22 01:17:09,538 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.cluster.server.rpc.protocol.negotiator.type, will use default type nacos.remote.cluster.server.rpc.protocol.negotiator.type - -2025-09-22 01:17:09,539 WARN Recommended use 'nacos.remote.server.grpc.cluster.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760 - -2025-09-22 01:17:09,540 INFO Nacos GrpcClusterServer Rpc server started at port 9849 - -2025-09-22 01:17:09,548 INFO [ClientConnectionEventListenerRegistry] registry listener - RpcAckCallbackInitorOrCleaner - -2025-09-22 01:17:09,611 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager - -2025-09-22 01:17:11,916 INFO [ClientConnectionEventListenerRegistry] registry listener - AiConnectionBasedClientManager - -2025-09-22 01:49:55,739 INFO Nacos GrpcClusterServer Rpc server stopping - -2025-09-22 01:49:55,739 INFO Nacos GrpcSdkServer Rpc server stopping - -2025-09-22 01:49:55,752 INFO Nacos GrpcSdkServer Rpc server stopped successfully... - -2025-09-22 01:49:55,752 INFO Nacos GrpcClusterServer Rpc server stopped successfully... - -2025-09-22 01:50:08,694 INFO [ClientConnectionEventListenerRegistry] registry listener - ConfigConnectionEventListener - -2025-09-22 01:50:08,990 INFO Nacos GrpcSdkServer Rpc server starting at port 9848 - -2025-09-22 01:50:09,541 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.SdkDefaultTlsProtocolNegotiatorBuilder for type DEFAULT_TLS - -2025-09-22 01:50:09,541 INFO Load ProtocolNegotiatorBuilder com.alibaba.nacos.core.remote.grpc.negotiator.tls.ClusterDefaultTlsProtocolNegotiatorBuilder for type CLUSTER_DEFAULT_TLS - -2025-09-22 01:50:09,542 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.server.rpc.protocol.negotiator.type, will use default type nacos.remote.server.rpc.protocol.negotiator.type - -2025-09-22 01:50:09,547 WARN Recommended use 'nacos.remote.server.grpc.sdk.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760 - -2025-09-22 01:50:09,682 INFO Ssl Context auto refresh is not supported. - -2025-09-22 01:50:09,682 INFO Ssl Context auto refresh is not supported. - -2025-09-22 01:50:09,683 INFO RpcServerSslContextRefresher initialization completed. - -2025-09-22 01:50:09,683 INFO Nacos GrpcSdkServer Rpc server started at port 9848 - -2025-09-22 01:50:09,689 INFO Nacos GrpcClusterServer Rpc server starting at port 9849 - -2025-09-22 01:50:09,690 WARN Not found ProtocolNegotiatorBuilder for type nacos.remote.cluster.server.rpc.protocol.negotiator.type, will use default type nacos.remote.cluster.server.rpc.protocol.negotiator.type - -2025-09-22 01:50:09,691 WARN Recommended use 'nacos.remote.server.grpc.cluster.max-inbound-message-size' property instead 'nacos.remote.server.grpc.maxinbound.message.size', now property value is 10485760 - -2025-09-22 01:50:09,693 INFO Nacos GrpcClusterServer Rpc server started at port 9849 - -2025-09-22 01:50:09,706 INFO [ClientConnectionEventListenerRegistry] registry listener - RpcAckCallbackInitorOrCleaner - -2025-09-22 01:50:09,772 INFO [ClientConnectionEventListenerRegistry] registry listener - ConnectionBasedClientManager - -2025-09-22 01:50:11,599 INFO [ClientConnectionEventListenerRegistry] registry listener - AiConnectionBasedClientManager - diff --git a/docker/traefik/README.md b/docker/traefik/README.md index df764a5..33d2b0f 100644 --- a/docker/traefik/README.md +++ b/docker/traefik/README.md @@ -1 +1,2 @@ -docker-compose down && docker-compose up -d \ No newline at end of file +docker-compose down && docker-compose up -d +docker compose down && docker compose up -d \ No newline at end of file diff --git a/docker/traefik/docker-compose.yml b/docker/traefik/docker-compose.yml index 9a58fb0..2af7328 100644 --- a/docker/traefik/docker-compose.yml +++ b/docker/traefik/docker-compose.yml @@ -8,27 +8,32 @@ services: - traefik-net ports: - "80:80" - - "8080:8080" + - "8880:8080" # network_mode: "host" # 主机网络模式 volumes: - ./traefik.yml:/etc/traefik/traefik.yml - ./dynamic.yml:/etc/traefik/dynamic.yml # 动态配置文件 restart: always + whoami: + image: traefik/whoami + labels: + - "traefik.http.routers.whoami.rule=Host(`whoami.localhost`)" + # 2. Nacos 服务监听脚本 - nacos-watcher: - user: "root" - privileged: true - image: node:24.8.0-alpine3.21 - container_name: nacos-watcher - # network_mode: "host" - networks: - - traefik-net - working_dir: /app - volumes: - - ./:/app # 挂载当前目录到容器 - command: sh -c "npm install && node src/index.js" - restart: always +# nacos-cluster-watcher: +# user: "root" +# privileged: true +# image: node:24.8.0-alpine3.21 +# container_name: nacos-cluster-watcher +# # network_mode: "host" +# networks: +# - traefik-net +# working_dir: /app +# volumes: +# - ./:/app # 挂载当前目录到容器 +# command: sh -c "npm install && node src/index.js" +# restart: always networks: traefik-net: diff --git a/docker/traefik/package.json b/docker/traefik/package.json index 4e10812..80bd4e8 100644 --- a/docker/traefik/package.json +++ b/docker/traefik/package.json @@ -1,5 +1,5 @@ { - "name": "traefik", + "name": "traefik-naco", "version": "1.0.0", "description": "", "scripts": { diff --git a/docker/traefik/src/config/index.js b/docker/traefik/src/config/index.js index 7da37b2..ab28ecd 100644 --- a/docker/traefik/src/config/index.js +++ b/docker/traefik/src/config/index.js @@ -4,6 +4,8 @@ module.exports = { filePath: path.join(__dirname, '../../dynamic.yml'), nacosApi: { baseUrl: 'http://192.168.31.101:8848/nacos/v1/ns', + // baseUrl: 'http://192.168.31.101:8848/nacos/v3/admin/ns', + apiList: { instanceInfo: '/instance/list', serviceList: '/service/list', diff --git a/front-end/app-product/src/features/product/views/ProductList/ProductList.tsx b/front-end/app-product/src/features/product/views/ProductList/ProductList.tsx index 1c1c862..71f937d 100644 --- a/front-end/app-product/src/features/product/views/ProductList/ProductList.tsx +++ b/front-end/app-product/src/features/product/views/ProductList/ProductList.tsx @@ -22,6 +22,7 @@ export default defineComponent({ onMounted(() => { + loadProductList() }) diff --git a/front-end/app-product/src/main.ts b/front-end/app-product/src/main.ts index 601a7d4..dcbab81 100644 --- a/front-end/app-product/src/main.ts +++ b/front-end/app-product/src/main.ts @@ -5,6 +5,7 @@ import { createPinia } from 'pinia' import App from './App' + createApp(App) .use(createPinia()) .mount('#app') diff --git a/front-end/app-product/vite.config.ts b/front-end/app-product/vite.config.ts index 2a2977c..4546e50 100644 --- a/front-end/app-product/vite.config.ts +++ b/front-end/app-product/vite.config.ts @@ -4,13 +4,13 @@ import vueJsx from '@vitejs/plugin-vue-jsx' import vueDevTools from 'vite-plugin-vue-devtools' import federation from '@originjs/vite-plugin-federation'; import { fileURLToPath, URL } from "node:url"; -import { nacosRegVitePlugin } from "nacos-federation"; import { visualizer } from 'rollup-plugin-visualizer'; export default defineConfig(async ({ mode }) => { const env = loadEnv(mode, process.cwd()); return { + base: `${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_SERVER_NAME }`, server: { port: Number(env.VITE_SERVER_PORT), host: '0.0.0.0', @@ -18,11 +18,11 @@ export default defineConfig(async ({ mode }) => { cors: true }, plugins: [ - nacosRegVitePlugin(), + // nacosRegVitePlugin(), federation({ name: env.VITE_SERVER_NAME, remotes: { - shared: `http://${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_MODEL_SHARED_NAME }/assets/remoteEntry.js` + shared: `${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_MODEL_SHARED_NAME }/assets/remoteEntry.js` }, exposes: { // 暴露给主应用的资源(按功能分组) './ProductDomain': './src/domains/product/index.ts', // 领域层(实体、服务、接口等) diff --git a/front-end/app-shared/index.html b/front-end/app-shared/index.html index b772142..baaf938 100644 --- a/front-end/app-shared/index.html +++ b/front-end/app-shared/index.html @@ -10,7 +10,7 @@
- + \ No newline at end of file diff --git a/front-end/app-shared/package.json b/front-end/app-shared/package.json index b7bb14d..800f685 100644 --- a/front-end/app-shared/package.json +++ b/front-end/app-shared/package.json @@ -22,6 +22,7 @@ }, "devDependencies": { "@vitejs/plugin-vue": "^6.0.1", + "@vitejs/plugin-vue-jsx": "^5.1.1", "rollup-plugin-visualizer": "^6.0.3", "typescript": "~5.8.3", "vite": "^7.1.6" diff --git a/front-end/app-shared/src/App.tsx b/front-end/app-shared/src/App.tsx new file mode 100644 index 0000000..58b96fd --- /dev/null +++ b/front-end/app-shared/src/App.tsx @@ -0,0 +1,24 @@ +import { defineComponent, onMounted } from 'vue' + +export default defineComponent({ + setup() { + + onMounted({}) + return () => ( + <> +
+

共享资源-联邦模块

+

此页面仅用于 商品模块 的单独开发和调试,可临时引入组件进行本地测试,实际运行时由 主应用 + 加载本项目代码

+ + {/*

本模块包含的功能:

*/ } + {/*
    */ } + {/*
  • 1:获取商品首页的数据和展示
  • */ } + {/*
  • 2:点击视频进入详情页
  • */ } + {/*
*/ } + {/*

*/ } +
+ + ) + } +}) \ No newline at end of file diff --git a/front-end/app-shared/src/config/HttpConfig.ts b/front-end/app-shared/src/config/HttpConfig.ts index 4c59ae7..71df265 100644 --- a/front-end/app-shared/src/config/HttpConfig.ts +++ b/front-end/app-shared/src/config/HttpConfig.ts @@ -1,9 +1,9 @@ export class HttpConfig { // public static DevBaseUrl: string = "http://127.0.0.1:3210/api" - public static DevBaseUrl: string = import.meta.env.VITE_DEVBASEURL + public static DevBaseUrl: string = window.__APP_CONFIG__.VITE_DEVBASEURL // public static ProdBaseUrl: string = "http://127.0.0.1:3210/api/" - public static ProdBaseUrl: string = import.meta.env.VITE_PRODBASEURL - + public static ProdBaseUrl: string = window.__APP_CONFIG__.VITE_PRODBASEURL + public static apiList: string = "" } diff --git a/front-end/app-shared/src/infra/AxiosInfra.ts b/front-end/app-shared/src/infra/AxiosInfra.ts index d747239..cc37d90 100644 --- a/front-end/app-shared/src/infra/AxiosInfra.ts +++ b/front-end/app-shared/src/infra/AxiosInfra.ts @@ -7,14 +7,13 @@ import axios, { } from "axios"; import { UrlCheckUtils } from '../utils/index' - class AxiosInfra { public instance: AxiosInstance; public constructor() { this.instance = axios.create({ baseURL: UrlCheckUtils.check(), - timeout: Number(import.meta.env.VITE_HTTPTIMEOUT), + timeout: Number(window.__APP_CONFIG__.VITE_HTTPTIMEOUT), headers: { "Content-Type": "application/json" } diff --git a/front-end/app-shared/src/main.ts b/front-end/app-shared/src/main.ts new file mode 100644 index 0000000..1d727e0 --- /dev/null +++ b/front-end/app-shared/src/main.ts @@ -0,0 +1,8 @@ +import { createApp } from 'vue' + +import App from './App' + + +createApp(App) + .mount('#app') + diff --git a/front-end/app-shared/src/types/global.d.ts b/front-end/app-shared/src/types/global.d.ts new file mode 100644 index 0000000..4c6d3ea --- /dev/null +++ b/front-end/app-shared/src/types/global.d.ts @@ -0,0 +1,13 @@ +export interface AppConfig { + VITE_DEVBASEURL: string; + VITE_PRODBASEURL: string; + VITE_HTTPTIMEOUT: string; +} + +declare global { + interface Window { + __APP_CONFIG__: AppConfig; + } +} + +export {}; \ No newline at end of file diff --git a/front-end/app-shared/tsconfig.json b/front-end/app-shared/tsconfig.json index 6b066fe..81f8cfc 100644 --- a/front-end/app-shared/tsconfig.json +++ b/front-end/app-shared/tsconfig.json @@ -16,6 +16,8 @@ "DOM", "DOM.Iterable" ], + "jsx": "preserve", + "jsxImportSource": "vue", "module": "ESNext", "moduleResolution": "bundler", "esModuleInterop": true, diff --git a/front-end/app-shared/vite.config.ts b/front-end/app-shared/vite.config.ts index 09cce39..f687632 100644 --- a/front-end/app-shared/vite.config.ts +++ b/front-end/app-shared/vite.config.ts @@ -1,14 +1,18 @@ import { defineConfig, loadEnv, UserConfig } from 'vite' import federation from "@originjs/vite-plugin-federation"; -import { nacosRegVitePlugin } from "nacos-federation"; +// @ts-ignore +import vueJsx from '@vitejs/plugin-vue-jsx' + // @ts-ignore import vue from '@vitejs/plugin-vue'; import visualizer from 'rollup-plugin-visualizer'; + export default defineConfig(async ({ mode }): Promise => { const env = loadEnv(mode, process.cwd()); return { + base: `${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_SERVER_NAME }`, server: { port: Number(env.VITE_SERVER_PORT), host: '0.0.0.0', @@ -16,7 +20,7 @@ export default defineConfig(async ({ mode }): Promise => { cors: true }, plugins: [ - nacosRegVitePlugin(), + // nacosRegVitePlugin(), federation({ name: env.VITE_SERVER_NAME, exposes: { @@ -34,6 +38,7 @@ export default defineConfig(async ({ mode }): Promise => { } }), vue(), + vueJsx(), visualizer({ title: "共享模块依赖分析", filename: 'dist/stats.html', // 分析文件输出路径 @@ -47,7 +52,6 @@ export default defineConfig(async ({ mode }): Promise => { minify: false, cssCodeSplit: true, rollupOptions: { - input: './src/index.ts', output: { format: 'esm', minifyInternalExports: false diff --git a/front-end/main-app/.env.development b/front-end/main-app/.env.development index 8e34483..5082c53 100644 --- a/front-end/main-app/.env.development +++ b/front-end/main-app/.env.development @@ -2,7 +2,7 @@ VITE_PREFIX=http:// # Nacos 配置中心ip:端口 -VITE_NACOS_ADDRESS=192.168.31.101:8848 +VITE_NACOS_ADDRESS=192.168.139.84:8848 # traefik 网关的地址 VITE_TRAEFIK_ADDRESS=192.168.31.101 diff --git a/front-end/main-app/src/app/main.ts b/front-end/main-app/src/app/main.ts index a3f30d8..5767a31 100644 --- a/front-end/main-app/src/app/main.ts +++ b/front-end/main-app/src/app/main.ts @@ -14,6 +14,9 @@ class Main { .use(router) .mount('#app') + // TODO 需要解决的地方 + window.__APP_CONFIG__ = import.meta.env; + elementPlus.init(app) initNormalizeStyles() @@ -21,7 +24,6 @@ class Main { } } - new Main diff --git a/front-end/main-app/src/app/views/Home/Home.tsx b/front-end/main-app/src/app/views/Home/Home.tsx index a9a286e..a903ff3 100644 --- a/front-end/main-app/src/app/views/Home/Home.tsx +++ b/front-end/main-app/src/app/views/Home/Home.tsx @@ -32,11 +32,11 @@ export default class Home extends Vue { ] async created() { - console.log("import.meta.env: ", import.meta.env) + } async addCount() { - // console.log(await nacos.find('app-product')) + // console.log(await nacos-cluster.find('app-product')) // console.log("ref dom: ", this.refH1) // this.router.push({ name: 'about' }) // this.route.query diff --git a/front-end/main-app/src/shared/types/global.d.ts b/front-end/main-app/src/shared/types/global.d.ts new file mode 100644 index 0000000..ad03119 --- /dev/null +++ b/front-end/main-app/src/shared/types/global.d.ts @@ -0,0 +1,11 @@ +export interface AppConfig { + [key: string]: any; +} + +declare global { + interface Window { + __APP_CONFIG__: AppConfig; + } +} + +export {}; \ No newline at end of file diff --git a/front-end/main-app/vite.config.ts b/front-end/main-app/vite.config.ts index 613a3f0..f2ae89b 100644 --- a/front-end/main-app/vite.config.ts +++ b/front-end/main-app/vite.config.ts @@ -8,13 +8,13 @@ import { visualizer } from 'rollup-plugin-visualizer'; export default defineConfig(async ({ mode }) => { const env = loadEnv(mode, process.cwd()); - // const nacos = await nacosServiceManage.create({ + // const nacos-cluster = await nacosServiceManage.create({ // serverList: env.VITE_NACOS_ADDRESS, // serviceName: env.VITE_SERVER_NAME, // port: Number(env.VITE_SERVER_PORT) // }); - // const productUrl = await nacos.find(env.VITE_MODEL_PRODUCT_NAME) - // const sharedUrl = await nacos.find(env.VITE_MODEL_SHARED_NAME) + // const productUrl = await nacos-cluster.find(env.VITE_MODEL_PRODUCT_NAME) + // const sharedUrl = await nacos-cluster.find(env.VITE_MODEL_SHARED_NAME) return { server: { @@ -38,8 +38,8 @@ export default defineConfig(async ({ mode }) => { // 并把配置实时同步到Traefik中,如果 xxx微前端模块停止运行那么就会从 Nacos服务中注销, // 那么dynamic.yml配置文件就会自动删减被下线的网关映射 - product: `http://${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_MODEL_PRODUCT_NAME }/assets/remoteEntry.js`, - shared: `http://${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_MODEL_SHARED_NAME }/assets/remoteEntry.js` + product: `${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_MODEL_PRODUCT_NAME }/assets/remoteEntry.js`, + shared: `${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }/${ env.VITE_MODEL_SHARED_NAME }/assets/remoteEntry.js` }, shared: { vue: { requiredVersion: '^3.5.18' }, diff --git a/front-end/nacos-federation/README.md b/front-end/nacos-federation/README.md index e69de29..2db351e 100644 --- a/front-end/nacos-federation/README.md +++ b/front-end/nacos-federation/README.md @@ -0,0 +1,23 @@ +功能分析: + + 1 注册服务 + + 子模块:直接通过nacos 注册,给 内网 的 使用 + + 主模块:main-app -> Traefik -> ConfigServer(nacos-federation) -> Nacos + + + + 2 获取配置 + + 子模块:直接通过 nacos 获取配置 + + 主模块: main-app -> Traefik -> ConfigServer(nacos-federation) -> Nacos + + + 增加功能: + + 认证授权机制 + 请求限流保护 + 操作日志记录 + 服务治理功能(如权重调整、元数据管理等) \ No newline at end of file diff --git a/front-end/nacos-federation/src/nacosServiceManage.ts b/front-end/nacos-federation/src/nacosServiceManage.ts index a92f873..c8e023b 100644 --- a/front-end/nacos-federation/src/nacosServiceManage.ts +++ b/front-end/nacos-federation/src/nacosServiceManage.ts @@ -42,8 +42,8 @@ export class nacosServiceManage { } const instance = new nacosServiceManage(option); - await instance.initClient(); - await instance.initConfig(); + // await instance.initClient(); + // await instance.initConfig(); this.instanceMap.set(configKey, instance); return instance; @@ -57,6 +57,53 @@ export class nacosServiceManage { return `${ option.serverList }-${ namespace }-${ option.serviceName }`; } + // 服务注册 + public async initClient() { + this.nacosClient = new NacosNamingClient({ + logger, + serverList: this.initOptions.serverList, + namespace: this.initOptions.namespace || 'public', + }); + await this.nacosClient.ready(); + this.reg() + } + + /** + * 获取配置 + * @param dataId + * @param group + */ + async getConfig(dataId: string, group: string = "DEFAULT_GROUP") { + const res = await this.configClient.getConfig(dataId, group) + console.log() + console.log(`${ chalk.blue('[nacos-cluster-federation] 配置发现:') }\n ${ chalk.green('➜') } ${ chalk.green(dataId) } 的配置为: ${ chalk.green(res) }`) + return res; + } + + /** + * 订阅配置变化 + * @param dataId + * @param group + */ + async subscribe(dataId: string, group: string = "DEFAULT_GROUP") { + return new Promise(async (resolve, reject) => { + this.configClient.subscribe({ dataId, group }, (content: any) => { + resolve(content) + }); + }) + } + + /** + * 初始化配置服务 + * @private + */ + private async initConfig() { + this.configClient = new NacosConfigClient({ + serverAddr: this.initOptions.serverList, + }); + } + + /** * 从Nacos发现服务地址 * @param serviceName 发现选项 @@ -87,31 +134,6 @@ export class nacosServiceManage { nacosServiceManage.instanceMap.delete(configKey); } - // 初始化服务发现 - private async initClient() { - this.nacosClient = new NacosNamingClient({ - logger, - serverList: this.initOptions.serverList, - namespace: this.initOptions.namespace || 'public', - }); - await this.nacosClient.ready(); - this.reg() - } - - // 初始化配置服务 - private async initConfig() { - this.configClient = new NacosConfigClient({ - serverAddr: this.initOptions.serverList, - }); - } - - async getConfig(dataId: string, group: string) { - const res = await this.configClient.getConfig(dataId, group) - console.log() - console.log(`${ chalk.blue('[nacos-federation] 配置发现:') }\n ${ chalk.green('➜') } ${ chalk.green(dataId) } 的配置为: ${ chalk.green(res) }`) - return res; - } - /** * 注册服务到Nacos并返回客户端实例 */ @@ -121,7 +143,7 @@ export class nacosServiceManage { // @ts-ignore await this.nacosClient.registerInstance(serviceName, { port, ip }) logger.log() - logger.log(chalk.blue("[nacos-federation] 服务注册:")) + logger.log(chalk.blue("[nacos-cluster-federation] 服务注册:")) logger.log(` ${ chalk.green('➜') } ${ chalk.green(serviceName) } (${ formatServiceUrl(ip, port) }) 已注册到配置中心!`); } diff --git a/front-end/nacos-federation/src/vite-plugin-nacos.ts b/front-end/nacos-federation/src/vite-plugin-nacos.ts index 56b1263..ade00fb 100644 --- a/front-end/nacos-federation/src/vite-plugin-nacos.ts +++ b/front-end/nacos-federation/src/vite-plugin-nacos.ts @@ -1,5 +1,5 @@ import { loadEnv, Plugin, UserConfig } from 'vite'; -import { nacosServiceManage, RegisterOptions } from './index'; +import { getLocalIP, nacosServiceManage, RegisterOptions } from './index'; import chalk from 'chalk'; const log = console.log; @@ -19,7 +19,8 @@ export function nacosRegVitePlugin(options?: Partial): Plugin { baseUrl = `${ env.VITE_SERVER_NAME }/` } return { - base: `${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }/${ baseUrl }`, + // http(https)://前端运行的服务器所在ip/前端模块名 + base: `${ env.VITE_PREFIX }${ getLocalIP() }/${ baseUrl }`, } }, async configResolved(config) { @@ -34,20 +35,19 @@ export function nacosRegVitePlugin(options?: Partial): Plugin { // 验证必要配置 if (!registerOptions.serverList) { - throw new Error('[nacos-federation] 缺少Nacos服务列表配置,请设置VITE_NACOS_ADDRESS环境变量或插件选项'); + throw new Error('[nacos-cluster-federation] 缺少Nacos服务列表配置,请设置VITE_NACOS_ADDRESS环境变量或插件选项'); } if (!registerOptions.serviceName) { - throw new Error('[nacos-federation] 缺少服务名称配置,请设置VITE_SERVER_NAME环境变量或插件选项'); + throw new Error('[nacos-cluster-federation] 缺少服务名称配置,请设置VITE_SERVER_NAME环境变量或插件选项'); } if (!registerOptions.port) { - throw new Error('[nacos-federation] 缺少服务端口配置,请设置VITE_SERVER_PORT环境变量或插件选项'); + throw new Error('[nacos-cluster-federation] 缺少服务端口配置,请设置VITE_SERVER_PORT环境变量或插件选项'); } // 初始化Nacos实例 nacosInstance = await nacosServiceManage.create(registerOptions); - const baseUrl = await nacosInstance.getConfig("baseUrl", "DEFAULT_GROUP") const baseUrlConfig = baseUrl ? JSON.parse(baseUrl) : {}; @@ -91,7 +91,7 @@ function Logs(env: Record) { ${ chalk.green('➜') } Prometheus 监控: ${ env.VITE_PREFIX }${ webUI }:9090 ${ chalk.green('➜') } Grafana 面板: ${ env.VITE_PREFIX }${ webUI }:3000 ${ chalk.green('➜') } Traefik 网关: ${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS } - ${ chalk.green('➜') } WebUi: ${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }:8080 + ${ chalk.green('➜') } WebUi: ${ env.VITE_PREFIX }${ env.VITE_TRAEFIK_ADDRESS }:8880 ${ chalk.blue.bold('微前端信息:') } ${ chalk.green('➜') } 主模块:${ chalk.green(env.VITE_SERVER_NAME) } diff --git a/front-end/nacos-federation/tsconfig.json b/front-end/nacos-federation/tsconfig.json index bec9f91..306507e 100644 --- a/front-end/nacos-federation/tsconfig.json +++ b/front-end/nacos-federation/tsconfig.json @@ -13,7 +13,8 @@ "declarationDir": "./dist" }, "include": [ - "src/**/*" + "src/**/*", + "src/types/*" ], "exclude": [ "node_modules",